Custom Cursor Pro

Custom Cursor Pro

Choose your own cursor in your Chrome browser. Largest collection of absolutely free cursors.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_name__",
  "short_name": "__MSG_name__",
  "description": "__MSG_description__",
  "default_locale": "en",
  "version": "1.0",
  "manifest_version": 3,
  "icons": {
    "16": "./assets/icons/16.png",
    "24": "./assets/icons/24.png",
    "32": "./assets/icons/32.png",
    "48": "./assets/icons/48.png",
    "128": "./assets/icons/128.png"
  },
  "action": {
    "default_icon": "./assets/icons/32.png",
    "default_title": "__MSG_name__",
    "default_popup": "./popup/popup.html"
  },
  "background": {
    "service_worker": "scripts/background.js"
  },
  "permissions": [
    "storage",
    "unlimitedStorage",
    "tabs",
    "scripting",
    "declarativeNetRequest",
    "gcm"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "content_scripts": [
    {
      "js": [
        "scripts/content.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "all_frames": true,
      "run_at": "document_start"
    }
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "rules_network",
        "enabled": true,
        "path": "rules_network.json"
      }
    ]
  },
  "web_accessible_resources": [
    {
      "resources": [
        "scripts/init.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ]
}