Recensioni per Simple Gesture for Android
Simple Gesture for Android di utubo
141 recensioni
- Valutata 5 su 5di 神末SESM, 5 anni fa
- Valutata 4 su 5di Utente Firefox 15025349, 5 anni faPlease implement an option to open the tab list with a gesture.
Replica dello sviluppatore
pubblicato il 5 anni faYou can set the URL of "Tab-Manager" add-on to a custom-gesture.
https://addons.mozilla.org/firefox/addon/tab-manager-for-mobile/
thx.
p.s.
Sorry, Webextens for Android can't open "about:newtab" - the default tab list -. - Valutata 5 su 5di Utente Firefox 14407045, 6 anni faWow, so powerful! Such a good Firefox Android navigation experience.
- Valutata 5 su 5di Carlos Andres Corzo Peñaloza, 6 anni faWorks perfectly. Easy to set up and customize.
- Valutata 4 su 5di wang, 6 anni fa
- Valutata 5 su 5di Utente Firefox 12932343, 6 anni fa
- Valutata 5 su 5di Utente Firefox 13108631, 6 anni faThat's just great!!!!!! A must have. Thx a lot for great idea and its execution
Best productive add-on for Firefox! - Valutata 5 su 5di xin, 6 anni fa
- Valutata 4 su 5di Byzod, 6 anni faWorking on 66
But the "timeout" setting is not working as intended.
imo the timeout timer should reset it self if the user's finger is still moving
Thus 1000ms timeout means "if the user's finger stop moving for 1 second, stop gesture detection"
The current logic is, however, "I gave you 1 second to finish your gesture, no matter the gesture is super simple that you need to wait 800ms after finished it or it's super complex that you can barely draw half of it in 1 second", this is counter-intuitive.Replica dello sviluppatore
pubblicato il 6 anni faI fixed it.
(However, if the moving distance is short, it times out.)
Thanks for your review. - Valutata 2 su 5di Paweł Kolo, 6 anni faHow to get it to work that app?
I have Huawei Mate 20 Pro.
Gestures doesn't work in Firefox for me.
Page is scrolling instead when i try to gesture simply left, or right as back & forward. Close, open new, previous or next tab, nothing is working. Can you help?Replica dello sviluppatore
pubblicato il 6 anni faSorry for replying so late.
Add-on are does not work in some of the specific page.(eg "about:blank", , "about:home", "addons.mozilla.org" ...)
Also this add-on does not work when prevent touch event by javascript of the page you are viewing.
As other causes, this add-on may have a bug... (Sorry, I will not be able to fix it soon.)
thanks.
2019/02/28
I could confirm it with my smartphone.
However, I will not be able to fix it soon...
(It may be a bug in the Webextensions API)
2019/02/28 - 2
When the view is zoomed in, javascript seems to get the wrong touch position and scroll position.
Please wait for firefox is fixed. - Valutata 5 su 5di Utente Firefox 14609548, 6 anni faFantastic addon! Makes Firefox much nicer to use on a big phone. The ability to customize the gestures is great, too.
- Valutata 5 su 5di Vedun, 6 anni fa
- Valutata 5 su 5di Utente Firefox 14538272, 6 anni fapls add (close next tab) and (close privous tab) in simple gesture
tanx ❤ - Valutata 5 su 5di Utente Firefox 14524259, 6 anni fahi my friend
you can add 'colse special tab'
and user add special url to close
tanx for lovely add on
--------
can you add "close next tab " and "close privous tab" ??
and i don't understand ( p.s.
I planning wrap "browser.tabs.query({});" by "SimpleGesture.getTabs();" )
tanx my friendReplica dello sviluppatore
pubblicato il 6 anni faSorry, that has two probrems.
・Webextensions doesn't work special tab. so, you must open "about:tabs" manually for select other tab. (and, you can close special tab in "about:tabs" manually.)
・Webextensions API sometimes returns "about:blank" instead of actual URL.
thx.
p.s.
I planning wrap "browser.tabs.query({});" by "SimpleGesture.getTabs();" - Valutata 5 su 5di Utente Firefox 13867479, 6 anni faadd on not work ,need sing
‐-------------
pls add close same tab,or close same link in tab
tanx for usefully app ❤
-------------
"move to an already opebed tab " is automatic work , but I mean close same url tab with special gesture;
look like ( close current tab - close all tab - close other tab )
you can add (close same url tab )
tnx for usefully app❤
-------------
app not work need singReplica dello sviluppatore
pubblicato il 6 anni faDoes "same tab" mean "same url tab" ?
So, how is "Move to an already opened tab" addon.
https://addons.mozilla.org/ja/firefox/addon/move-to-an-already-opened-tab/
This addon prevents to open same url.
thx.
-------------
OK, I add "Close same URL" in version 2.12.
But, Firefox for Android has a bag, so this often does not work well . (╥﹏╥) - Valutata 5 su 5di Utente Firefox 13137132, 6 anni faWorking on Windows and Android. Touch Swipe Addon.
- Valutata 5 su 5di Utente Firefox 13933116, 6 anni fahello
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?
ThanksReplica dello sviluppatore
pubblicato il 6 anni fa> 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. - Valutata 5 su 5di Utente Firefox 14440628, 6 anni faAndroidでFirefoxを使ってる人は一度インストールしてみることをお勧めします!
(特に片手での操作がメインの人)
とても良いアドオンなのですが、もし技術的に可能なのであれば
・タブ一覧の表示
・閉じたタブの復元
が実装されれば大変ありがたいです。
最後になりましたが、アドオンの公開、誠にありがとうございます。Replica dello sviluppatore
pubblicato il 6 anni fa使ってくださってありがとうございます。
> ・タブ一覧の表示
手前味噌かつ実験中ですが、タブの一覧を表示するアドオンを作りました。
タブ一覧のURLをジェスチャに登録することでジェスチャでも呼び出せます。
https://addons.mozilla.org/ja/firefox/addon/tab-manager-for-mobile/
そのうちFirefoxがアドレスバーを下側に設定できるようにアップデートされる噂も
あるのでそれまでは耐えるしか無いかもです。
> ・閉じたタブの復元
現在Android版はFirefox側のAPIが実装されてないのでできません。(セキュリティの関係?)
APIが実装されたらジェスチャに設定できるようにしようと思います。 - Valutata 2 su 5di Utente Firefox 14413280, 6 anni fa
- Valutata 5 su 5di Utente Firefox 13436854, 6 anni fa