Simple Gesture for Android

Simple Gesture for Android

Adds one-finger gestures for Android. (P.S. "Quick Gestures" is great addon. I hope it be updated.)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_extensionName__",
  "description": "__MSG_extensionDescription__",
  "version": "3.14",
  "default_locale": "en",
  "icons": {
    "64": "icon64.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "119.0"
    },
    "gecko_android": {
      "strict_min_version": "119.0"
    }
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "*://*/*",
    "storage",
    "history",
    "tabs",
    "sessions",
    "clipboardRead",
    "webRequest",
    "webRequestBlocking"
  ]
}