Simple Gesture for Android incelemeleri
Simple Gesture for Android geliştiren: utubo
132 inceleme
- 5 üzerinden 5 puanyazan: Breadmann, 7 yıl önceFantastic add on. Excellent work. I was wondering about a few additions. Is there any way to add in a function for pasting text directly into the URL bar? I was trying to see if I could do a custom gesture with JavaScript but I'm not very good with JS, sorry.
Edit 11/27 Sending my thanks for the speedy update. I have been using it once you first released it and it works very well. All the best,Geliştiricinin yanıtı
gönderilme: 7 yıl önceSorry, version 2.21 could not read clipboard.
So, I fixed it at version 2.22,
and you can use this script to paste and go.
-----------------------------------------------------------
/**
* @name Paste and Go
*/
navigator.clipboard.readText().then(text => {
if (text.startsWith("http://") || text.startsWith("https://")) {
SimpleGesture.open(text);
} else {
SimpleGesture.open('https://www.google.com/search?q=' + encodeURIComponent(text));
}
});
-----------------------------------------------------------
Thank you for your review.
Fix 12/04
if (text.startsWith("^http://") || text.startsWith("^https://")) {
to
if (text.startsWith("http://") || text.startsWith("https://")) { - 5 üzerinden 5 puanyazan: Firefox kullanıcısı 12593937, 7 yıl önceHope to see this addon back on firefox android soon.
- 5 üzerinden 5 puanyazan: Firefox kullanıcısı 15314091, 7 yıl önceThis is a great AddOn for FF on Android - finally it's possible to use Firefox almost as fast as on desktop. Thank you so much!
Two suggestions though:
Can you implement the possibility to block gestures on certain pages in the future? I know I can enable/disable it manually. But I use e.g. https://www.qwant.com/maps/ in the browser quite often, and of course it would be best to disable SG automatically on such pages, where you e.g. push a map around.
Another question: I use 'new tab' gesture very often and it really bugs me that I afterwards have to click once more on top into the address bar to start typing or to even see the default suggestions of firefox. Would it be possible to automatically focus the address bar?
Thanks a lot!Geliştiricinin yanıtı
gönderilme: 7 yıl önce>Can you implement the possibility to block gestures on certain pages in the future?
Ok, I add blacklist in v2.19
(I will improve the input form.)
>Would it be possible to automatically focus the address bar?
Sorry, it is impossible.
Thank you for your review. Geliştiricinin yanıtı
gönderilme: 7 yıl önceSorrry, this add-on is for Android.
Webextensions can't suppress context menu.- 5 üzerinden 5 puanyazan: 神末SESM, 7 yıl önce
- 5 üzerinden 5 puanyazan: Firefox kullanıcısı 14407045, 7 yıl önceWow, so powerful! Such a good Firefox Android navigation experience.
- 5 üzerinden 5 puanyazan: Carlos Andres Corzo Peñaloza, 7 yıl önceWorks perfectly. Easy to set up and customize.
- 5 üzerinden 5 puanyazan: Firefox kullanıcısı 12932343, 8 yıl önce
- 5 üzerinden 5 puanyazan: Firefox kullanıcısı 13108631, 8 yıl önceThat's just great!!!!!! A must have. Thx a lot for great idea and its execution
Best productive add-on for Firefox! - 5 üzerinden 5 puanyazan: xin, 8 yıl önce
- 5 üzerinden 5 puanyazan: Firefox kullanıcısı 14609548, 8 yıl önceFantastic addon! Makes Firefox much nicer to use on a big phone. The ability to customize the gestures is great, too.
- 5 üzerinden 5 puanyazan: Vedun, 8 yıl önce
- 5 üzerinden 5 puanyazan: Firefox kullanıcısı 14538272, 8 yıl öncepls add (close next tab) and (close privous tab) in simple gesture
tanx ❤ - 5 üzerinden 5 puanyazan: Firefox kullanıcısı 14524259, 8 yıl öncehi 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 friendGeliştiricinin yanıtı
gönderilme: 8 yıl önceSorry, 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();" Geliştiricinin yanıtı
gönderilme: 8 yıl önceSorry, WebExtensions of Firefox for Android can't restore tabs.- 5 üzerinden 5 puanyazan: Firefox kullanıcısı 13867479, 8 yıl önceadd 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 singGeliştiricinin yanıtı
gönderilme: 8 yıl önceDoes "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 . (╥﹏╥) - 5 üzerinden 5 puanyazan: Firefox kullanıcısı 13137132, 8 yıl önceWorking on Windows and Android. Touch Swipe Addon.
- 5 üzerinden 5 puanyazan: Firefox kullanıcısı 13933116, 8 yıl öncehello
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?
ThanksGeliştiricinin yanıtı
gönderilme: 8 yıl önce> 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. - 5 üzerinden 5 puanyazan: Firefox kullanıcısı 14440628, 8 yıl önceAndroidでFirefoxを使ってる人は一度インストールしてみることをお勧めします!
(特に片手での操作がメインの人)
とても良いアドオンなのですが、もし技術的に可能なのであれば
・タブ一覧の表示
・閉じたタブの復元
が実装されれば大変ありがたいです。
最後になりましたが、アドオンの公開、誠にありがとうございます。Geliştiricinin yanıtı
gönderilme: 8 yıl önce使ってくださってありがとうございます。
> ・タブ一覧の表示
手前味噌かつ実験中ですが、タブの一覧を表示するアドオンを作りました。
タブ一覧のURLをジェスチャに登録することでジェスチャでも呼び出せます。
https://addons.mozilla.org/ja/firefox/addon/tab-manager-for-mobile/
そのうちFirefoxがアドレスバーを下側に設定できるようにアップデートされる噂も
あるのでそれまでは耐えるしか無いかもです。
> ・閉じたタブの復元
現在Android版はFirefox側のAPIが実装されてないのでできません。(セキュリティの関係?)
APIが実装されたらジェスチャに設定できるようにしようと思います。 - 5 üzerinden 5 puanyazan: davi, 8 yıl önceThe most usefull addon for firefox android. Wish It had a gesture for also opening the browser menu (the three dots on the upper right corner), it.s the only thing missing in my opinion.
- 5 üzerinden 5 puanyazan: Firefox kullanıcısı 13436854, 8 yıl önce
- 5 üzerinden 5 puanyazan: Ilya Rysenkov, 8 yıl önce
- 5 üzerinden 5 puanyazan: Firefox kullanıcısı 13602547, 8 yıl önceI installed it 10 minute ago and it gets time to get used to it but it's fantastic. I was missing some basic description as of how this works (didn't even know what L-D-R meant) but an article about the app helped me).
- 5 üzerinden 5 puanyazan: Emplate, 8 yıl önce