Advanced Inputs

Advanced Inputs

Customize and expand your mouse and touchscreen inputs.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Advanced Inputs",
  "version": "1.0",
  "default_locale": "en",
  "description": "__MSG_extExp__",
  "icons": {
    "128": "icon128.png"
  },
  "author": "Tomáš Jarolím",
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": true
  },
  "permissions": [
    "storage",
    "tabs",
    "sessions",
    "bookmarks"
  ],
  "options_page": "html/options.html",
  "options_ui": {
    "chrome_style": true,
    "page": "html/options.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_end",
      "js": [
        "etc/vars.js",
        "js/PlS.js",
        "js/content.js"
      ],
      "css": [
        "css/content.css"
      ]
    }
  ],
  "web_accessible_resources": [
    "icon128.png"
  ]
}