utubo / firefox-simple_gesture

🦊An add-on that adds simple touch gestures for Firfox for Android. Sorry, I only check issues sometimes.
https://addons.mozilla.org/ja/firefox/addon/simple-gesture/
Other
32 stars 1 forks source link

新しいタブのURLを複数登録したい #19

Closed utubo closed 6 years ago

utubo commented 6 years ago

使うかなぁ? 設定画面が面倒くさい

データは↓みたいに持てばいいかな。これなら他の機能も設定できそう。

{ gestures: {
   'L-R-U-D': '{ command: 'openURL', url: 'http://path.to.url', newTab: true }'
}}

で、bagkcgour.jsで

let f;
let param;
if (msg.charAt(0) === '{') {
  param = JSON.parse(msg);
  f = exec[param.command];
} else {
  f = exec[msg];
}
省略
f(sendar.tab, param);

background.jsはtouchendのたびに通るので、もうちょっとスマートにしたい。

その他

utubo commented 6 years ago

やっぱり設定画面が難しいそうなのでおいおいやるおいおい これを実装したらバージョンを2.0にする