Simple Gesture for Android에 대한 리뷰
Simple Gesture for Android 제작자: utubo
리뷰 147개
- 5점 만점에 5점Firefox 사용자 16345530 님, 5년 전nightlyにて使用中。
ジェスチャーが使えないとfirefox使っている意味ないから使えて良かった。
ところで、次のタブ前のタブが使えなくなってました。
修正は可能ですか?개발자 답글
5년 전에 게시됨返信が遅くなってしまいすみません。
Firefox側のタブに関するAPIにバグがあるため、Firefoxが修正されるまではどうにもならなそうです。
因みに「タブを閉じる」等も最後の1つのタブを閉じるとおかしな挙動になったりします。 - 5점 만점에 5점Scryptarch 님, 5년 전Honestly this add on makes the browser so much more user friendly, really improved the experience a lot.
hoping to see this become available in the new version of Firefox daylight soon - 5점 만점에 5점Firefox 사용자 15785508 님, 5년 전
- 5점 만점에 5점Firefox 사용자 14386455 님, 5년 전
개발자 답글
5년 전에 게시됨That bug did not reappear.
But just to be sure, I changed the logic a little in 2.22.2.
I'm sorry if it's not fixed.- 5점 만점에 5점Simon Carter 님, 5년 전Indispensable. I love being able to use gestures to switch and close tabs on mobile and hate using other browsers now!
개발자 답글
5년 전에 게시됨Sorry for my late reply.
You can use this script.
-------------------------------------------------
/**
* @name Duplicate current tab
*/
SimpleGesture.open(location.href);
-------------------------------------------------
(Webextentions can not duplicate the history.)
thx.
Edit2:
Sorry, I didn't get a notification of the edit, so I missed it.
I will investigate when I get a chance to get Windows.
Sorry...- 5점 만점에 5점Firefox 사용자 15739538 님, 5년 전Great add-on! Though U-R and U-L for next and previous tabs look more intuitive for me.
- 5점 만점에 2점UtauHiKitsune75 님, 5년 전Android版Firefoxでは反応が悪いことが度々ある。
本来Android向けに作られているはずなのになんでやろうか…
Windows版Firefoxに強制インストールしてみたが、Windows版Firefoxでは問題なく動いている。개발자 답글
5년 전에 게시됨報告ありがとうございます。
もしこちらでも再現したら修正できないか試みます。自分でも使っているので。
既に設定済みなら申し訳ないのですが、
Firefoxで「about:config」を開いて「dom.visualviewport.enabled」をtrueに切り替えてみてください。
解決する可能性があります。
反応が悪いページがいつも同じでしたら、考えられることとして
表示しているページがJavascriptでタッチのイベントを抑制しているのかもしれません。
(Windows版では問題ないとのことですので可能性は低いけれど) - 5점 만점에 5점Firefox 사용자 12628184 님, 5년 전
- 5점 만점에 5점Firefox 사용자 14706772 님, 6년 전
- Fantastic 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,개발자 답글
6년 전에 게시됨Sorry, 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://")) {