Hide Cursor

Hide Cursor

Hide the cursor when a shortcut key is pressed

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Hide Cursor",
  "description": "Hide the cursor when a shortcut key is pressed",
  "version": "1.0.0",
  "manifest_version": 3,
  "minimum_chrome_version": "92",
  "permissions": [
    "activeTab",
    "scripting"
  ],
  "options_page": "options.html",
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "/images/cursor16.png",
      "32": "/images/cursor32.png",
      "48": "/images/cursor48.png",
      "128": "/images/cursor128.png"
    }
  },
  "web_accessible_resources": [
    {
      "resources": [
        "hidecursor.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "commands": {
    "toggle-hidden": {
      "suggested_key": "Ctrl+Shift+H",
      "description": "Toggle weather the cursor is shown"
    }
  },
  "icons": {
    "16": "/images/cursor16.png",
    "32": "/images/cursor32.png",
    "48": "/images/cursor48.png",
    "128": "/images/cursor128.png"
  }
}