Κριτικές για το Simple Gesture for Android
Simple Gesture for Android από utubo
Κριτική από Χρήστης Firefox 13933116
Βαθμολογία 5 από 5
από Χρήστης Firefox 13933116, 7 χρόνια πρινhello
This addon is very useful
I have an suggestion, is it possible to open and run javascript on a link for example :
SimpleGesture.openExe('google.com','javascript');
And if it's possible how much deep can it goes?
for example:
SimpleGesture.openExe('google.com',
'SimpleGesture.openExe("facebook.com","javascript")');
And there is a problem with simple gesture command it doesn't care about javascript delay like setTimeout or if or... for example:
setTimeout(SimpleGesture.doCommand('close'),5000); or SimpleGesture.doCommand('close');
both close current tab immediately
is this a limitation of addon or it's just a bug that happens for me
Thanks
________________________
Thanks for fast response and fast update your addon is awesome
SimpleGesture.open("google.com", {
code: 'alert("hello");'});
not working it just open new tab with this domain:
moz-extension://666e2979-c645-4046-9163-370bfaee0483/google.com
Thanks
__________________
It works like a charm
Thanks
___________________
Hi again
It's not working due to Mozilla's signature policies, are you going to sign the addon?
Thanks
This addon is very useful
I have an suggestion, is it possible to open and run javascript on a link for example :
SimpleGesture.openExe('google.com','javascript');
And if it's possible how much deep can it goes?
for example:
SimpleGesture.openExe('google.com',
'SimpleGesture.openExe("facebook.com","javascript")');
And there is a problem with simple gesture command it doesn't care about javascript delay like setTimeout or if or... for example:
setTimeout(SimpleGesture.doCommand('close'),5000); or SimpleGesture.doCommand('close');
both close current tab immediately
is this a limitation of addon or it's just a bug that happens for me
Thanks
________________________
Thanks for fast response and fast update your addon is awesome
SimpleGesture.open("google.com", {
code: 'alert("hello");'});
not working it just open new tab with this domain:
moz-extension://666e2979-c645-4046-9163-370bfaee0483/google.com
Thanks
__________________
It works like a charm
Thanks
___________________
Hi again
It's not working due to Mozilla's signature policies, are you going to sign the addon?
Thanks
Απάντηση προγραμματιστή
δημοσιεύτηκε στις 7 χρόνια πριν> SimpleGesture.openExe
That's a good idea.
I will add SimpleGesture.open(url, options) in the next version. (This may take some time.)
for example
SimpleGesture.open('google.com', {
javascript: `alert('hello');`,
inNewTab: true, // default value is true
active: true // default value is true
});
> And if it's possible how much deep can it goes?
Sorry, this may not work in deep.
> setTimeout(SimpleGesture.doCommand('close'),5000);
Try this :)
setTimeout(() => { SimpleGesture.doCommand('close'); }, 5000);
Thanks
UPDATE 2018/12/04
I add a new API "SimpleGesture.open" in version 2.11.
(I changed the name of option from "javascript" to "code", like the "browser.tabs.executeScript" API.)
see
https://github.com/utubo/firefox-simple_gesture/wiki/SimpleGesture.open
Thank you for your suggestion
>SimpleGesture.open("google.com", { code: 'alert("hello");'});
Fix "google.com" to "https://www.google.com"
I thought about adding "https://" automatically, but I stopped.
That's a good idea.
I will add SimpleGesture.open(url, options) in the next version. (This may take some time.)
for example
SimpleGesture.open('google.com', {
javascript: `alert('hello');`,
inNewTab: true, // default value is true
active: true // default value is true
});
> And if it's possible how much deep can it goes?
Sorry, this may not work in deep.
> setTimeout(SimpleGesture.doCommand('close'),5000);
Try this :)
setTimeout(() => { SimpleGesture.doCommand('close'); }, 5000);
Thanks
UPDATE 2018/12/04
I add a new API "SimpleGesture.open" in version 2.11.
(I changed the name of option from "javascript" to "code", like the "browser.tabs.executeScript" API.)
see
https://github.com/utubo/firefox-simple_gesture/wiki/SimpleGesture.open
Thank you for your suggestion
>SimpleGesture.open("google.com", { code: 'alert("hello");'});
Fix "google.com" to "https://www.google.com"
I thought about adding "https://" automatically, but I stopped.
149 κριτικές
- Βαθμολογία 4 από 5από Dewman, ένας μήνας πρινIt updated 8 minutes ago, totally messes scrolling on Android phone. Five stars when fixed. Disabled it to be able to use Firefox.
EDIT: Seems to be fixed,thank youΑπάντηση προγραμματιστή
δημοσιεύτηκε στις ένας μήνας πρινI am so sorry!
I think it's fixed in 3.34.1, but if it doesn't work, I'll overwrite it with the version 3.33.2! - Βαθμολογία 5 από 5από Χρήστης Firefox 13352632, ένας μήνας πριν
- Βαθμολογία 5 από 5από Χρήστης Firefox 13016245, 2 μήνες πριν
- Βαθμολογία 5 από 5από Arshia, 3 μήνες πρινI like this extension. In the new version description it says “New: Support 2 or more fingers” but I can’t find this feature. I would like to set two finger touch to open a link in a new tab like safari on ipados. Is this possible? I a using double right now for this. So where is this 2 finger support?
Edit: Thank You. You added the feature I was looking forΑπάντηση προγραμματιστή
δημοσιεύτηκε στις 2 μήνες πρινOh, sorry.
I supported two-finger swipes, but forgot to support two-finger taps.
Might take some time.
I create a new issue.
https://github.com/utubo/firefox-simple_gesture/issues/102
thanks.
(2025/06/08)
v3.30 supports it.
(But 2 or more fingers double-tap is not yet supported.)
thank you for your review. - Βαθμολογία 5 από 5από Χρήστης Firefox 13919522, 4 μήνες πριν
- Βαθμολογία 4 από 5από Чувак, 6 μήνες πρινPlease add gesture for switching tabs. And maybe add two finger swipes.
Απάντηση προγραμματιστή
δημοσιεύτηκε στις 6 μήνες πριν> Please add gesture for switching tabs.
The API provided by Firefox is unstable, but you can use it by turning on “Enable experimental features” on the settings page.
> And maybe add two finger swipes.
Sorry, it will take some time to work on this.
I'll add it to the issues list.
https://github.com/utubo/firefox-simple_gesture/issues/99
Thank you for your review.
2025/02/25
> And maybe add two finger swipes.
v3.27 supports this. - Βαθμολογία 1 από 5από Χρήστης Firefox 18786637, 7 μήνες πριν
- Βαθμολογία 5 από 5από Χρήστης Firefox 17141374, 9 μήνες πριν
- Βαθμολογία 5 από 5από Χρήστης Firefox 13991591, 10 μήνες πριν
- Βαθμολογία 5 από 5από krix, ένας χρόνος πρινuseful and well-implemented add-on. Finally gifts FF-Androud users a nice UI experience, after Moz decided to cripple the UI some years ago.
Why does it need clip-board access though?Απάντηση προγραμματιστή
δημοσιεύτηκε στις ένας χρόνος πρινThis needs clip-board access though for custom gestures (=user script).
I will summarize the permissions.
Thank you for your review
(2024/07/20)
> I will summarize the permissions.
I done. (see About Extensions) - Βαθμολογία 4 από 5από Dan, ένας χρόνος πρινIt's a useful extension but there's one issue. If you have one tab open and you close it with a gesture, that tab freezes. It doesn't open the homepage.
- Βαθμολογία 5 από 5από AndyL964, ένας χρόνος πριν
- Βαθμολογία 5 από 5από MikeRL, ένας χρόνος πριν
- Βαθμολογία 5 από 5από Χρήστης Firefox 16921816, ένας χρόνος πρινVery nice extension! Thank you so much for this.
I would love for there to be a gesture for saving the current webpage as a bookmark.Απάντηση προγραμματιστή
δημοσιεύτηκε στις ένας χρόνος πρινSorry, Firefox for Android does not support the Bookmarks API for add-ons.😢
Thank you for your review. - Βαθμολογία 5 από 5από Χρήστης Firefox 17962956, ένας χρόνος πριν
- Βαθμολογία 4 από 5από Χρήστης Firefox 18145926, ένας χρόνος πριν
- Βαθμολογία 5 από 5από nickel3000, ένας χρόνος πριν
- Βαθμολογία 4 από 5από islisis, 2 χρόνια πρινVery nice addon, I would continue to use it if all of the notifications including timeouts could be hidden.
Απάντηση προγραμματιστή
δημοσιεύτηκε στις 2 χρόνια πριν> the notifications including timeouts could be hidden.
I fixed to hide the timeouts when 'Diaplay Command' is disabled in v3.12.2.
Thank you for your review. - Βαθμολογία 5 από 5από Whatzet2U, 2 χρόνια πρινIt'll do just about whatever you want it to. Reaching out to dev to request edge swipe support. Would provide just a bit more for my purposes.
- Βαθμολογία 5 από 5από Χρήστης Firefox 18222953, 2 χρόνια πριν
- Βαθμολογία 5 από 5από Subtilt, 2 χρόνια πριν
- Βαθμολογία 5 από 5από Kristhian X., 2 χρόνια πριν