Auto Hide Cursor

Auto Hide Cursor

Hides the cursor after a configurable amount of time

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Auto Hide Cursor",
  "description": "Hides the cursor after a configurable amount of time",
  "version": "0.1.0",
  "author": "Matthias Vogt",
  "homepage_url": "https://github.com/matthias-vogt/auto-hide-cursor",
  "options_page": "options.html",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "css": [
        "hide-cursor-class.css"
      ],
      "js": [
        "tab.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "icons": {
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "browser_action": {
    "default_icon": {
      "48": "icons/48.png",
      "128": "icons/128.png"
    },
    "default_popup": "options.html",
    "default_title": "New Tab URL"
  },
  "commands": {
    "hide-cursor": {
      "suggested_key": {
        "default": "Ctrl+Shift+H",
        "mac": "Command+Shift+H"
      },
      "description": "Toggle external stylesheets"
    }
  },
  "permissions": [
    "storage"
  ],
  "manifest_version": 2
}