Simple Gesture for Android のレビュー
Simple Gesture for Android 作成者: utubo
合計レビュー数: 162
- 5 段階中 5 の評価Firefox ユーザー 13568616 によるレビュー (8年前)Thank you! It works fine in firefox 61 in windows 10. Just one thing, is it possible to add a "exit fullscreen" gesture?
開発者の返信
投稿日時: 8年前Sorry, the Web-Extension API can not exit fullscreen.
thx.
p.s.
You can do it when playing video with fullscreen. (e.g. youtube)
https://github.com/utubo/firefox-simple_gesture/wiki/Simple-Gesture-Tips#cancel-fullscreen-only-media-player - 5 段階中 5 の評価Firefox ユーザー 12957458 によるレビュー (8年前)quick gesture が使えなくなりこれを見つけました。quick gestureより設定が楽かもしれません。感謝。
- 5 段階中 5 の評価Firefox ユーザー 13127361 によるレビュー (8年前)my only real interest was being able to swipe from and to open tabs at my whim and this add-on works like a charm on that front. this fills in the gap that the now defunct 'mobile swipe' add-on left in my soul.
my only concern is how certain system tabs such as the add-ons menu or the add-ons explorer (this screen for instance) don't allow the swipe feature. guess it's just hardcoded?
DISCLAIMER: for those unable to get this add-on to work, close all tabs and restart the browser. I was on my way to spruce up a negative review until I did that by accident and found the add-on working properly.開発者の返信
投稿日時: 8年前The new WebExtensions add-on does not work system tabs or some sites.
P.S.
If you want to make it work on Mozilla websites, see here.
https://www.ghacks.net/2017/10/27/how-to-enable-firefox-webextensions-on-mozilla-websites/
thx. - 5 段階中 5 の評価Firefox ユーザー 14023848 によるレビュー (8年前)So far I love this app. Changing tabs always seemed tedious when I was jumping back and forth while researching things. However, if possible I would like an option for undo close tab.
開発者の返信
投稿日時: 8年前Sorry, WebExtentionsApi can not undo close tab on Firefox for Android.
(Because, the "sessions" api is not supported.)
Thank you for your review. - 5 段階中 5 の評価Firefox ユーザー 12903306 によるレビュー (8年前)Great addon, thank you.
Idea: ability to open tab page with gesture so not to have to hit the icon at the top of the screen. - 5 段階中 5 の評価Firefox ユーザー 13911937 によるレビュー (8年前)
- 5 段階中 5 の評価Firefox ユーザー 13911890 によるレビュー (8年前)
- 5 段階中 4 の評価Firefox ユーザー 13094120 によるレビュー (9年前)
- 5 段階中 4 の評価Firefox ユーザー 12817722 によるレビュー (9年前)Thank you for making this. mobile browsing hasnt been the same since quick gestures bit the dust.
Only thing missing is a notification that pops up (R-L-U) when gestures are registered as they are being made. this is useful both for getting a better feel for the gestures you use and for preventing unintended gesture related incidents開発者の返信
投稿日時: 9年前OK, I added "Display command" option in ver. 2.5.
Update:
Sorry, I had missed read " ARE BEING MADE " .
I fixed to display gesture when gestures are 2 or more moves in ver. 2.5.2. - 5 段階中 5 の評価Firefox ユーザー 12281732 によるレビュー (9年前)
- 5 段階中 5 の評価Firefox ユーザー 12979178 によるレビュー (9年前)It helps a lot!THANKS.
Could you please add pageUP and pageDOWN gesture?開発者の返信
投稿日時: 9年前You can pageUp and pageDown with custom-gesture.
Try these code.
------------------------------
/** @name pageUp */
window.scrollByPages(-1, { behavior: 'smooth' });
------------------------------
------------------------------
/** @name pageDown */
window.scrollByPages(1, { behavior: 'smooth' });
------------------------------
Thanks. - 5 段階中 5 の評価Firefox ユーザー 13701009 によるレビュー (9年前)Goodjob!
Would you please add fullscreen gesture?
Thanks.開発者の返信
投稿日時: 9年前Sorry, I couldn't find the way to go fullscreen.
Video files (e.g. "*.webm") will cancel fullscreen, if execute this code with Custom-gesture.
---------------------------------------------------------------------------
/** @name Cancel fullscreen */
document.mozFullScreenElement && document.mozCancelFullScreen();
---------------------------------------------------------------------------
Thanks.