Chrome Mouse Gesture

Chrome Mouse Gesture

Use mouse gesture in chrome browser.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "page": "background_page.html"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "js/gestures.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start"
    }
  ],
  "default_locale": "en",
  "description": "Use mouse gesture in chrome browser.",
  "icons": {
    "16": "img/logo_16.png",
    "32": "img/logo_32.png",
    "64": "img/logo_64.png",
    "128": "img/logo_128.png"
  },
  "name": "Chrome Mouse Gesture",
  "options_page": "options.html",
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "update_url": "http://clients2.google.com/service/update2/crx",
  "version": "2.0.1.1",
  "manifest_version": 2,
  "minimum_chrome_version": "18",
  "web_accessible_resources": [
    "img/down.png",
    "img/left.png",
    "img/right.png",
    "img/top.png",
    "img/topbg.gif",
    "img/up.png",
    "img/logo_128.png",
    "img/logo_64.png",
    "img/logo_32.png",
    "img/logo_16.png",
    "img/logo_en.gif",
    "img/logo_zh_cn.gif"
  ]
}