Auto Hide Cursor

Auto Hide Cursor

Hides the mouse pointer/cursor after an arbitrary period of time.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Auto Hide Cursor",
  "version": "0.9.1",
  "description": "Hides the mouse pointer/cursor after an arbitrary period of time.",
  "author": "swg <[email protected]>",
  "homepage_url": "https://github.com/swg/auto-hide-cursor",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png",
    "300": "icon300.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "content.css"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{00a0f6b6-9388-4960-8f27-a5dc1c19611c}"
    }
  }
}