Rocker Gestures

Rocker Gestures

Allows you to navigate back and forward with your mouse button clicks (right + left = back). This feature is known from Opera browser.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "version": "2.0",
  "author": "Juraj Mäsiar",
  "default_locale": "en",
  "name": "__MSG_app_name__",
  "description": "__MSG_app_desc__",
  "icons": {
    "32": "32.png",
    "48": "48.png",
    "64": "64.png",
    "96": "96.png",
    "128": "128.png"
  },
  "background": {
    "page": "background/background_rg.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "run_at": "document_start",
      "js": [
        "content_script/rocker_gestures_cs.js"
      ]
    }
  ],
  "permissions": [
    "<all_urls>"
  ],
  "applications": {
    "gecko": {
      "id": "[email protected]_RockerGestures",
      "strict_min_version": "77.0"
    }
  }
}