Mousetures

Mousetures

Mouse and rocker gestures for tab switching, closing, and reloading

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Mousetures",
  "description": "Mouse and rocker gestures for tab switching, closing, and reloading",
  "version": "0.7.0",
  "permissions": [
    "storage",
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "background": {
    "scripts": [
      "actions.js",
      "background.js",
      "upgradeContentScripts.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start",
      "all_frames": true,
      "js": [
        "mouseEventGroup.js",
        "point.js",
        "moveGestures.js",
        "main.js",
        "upgradeContentScriptHelper.js",
        "gestureHandler.js"
      ]
    }
  ],
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  }
}