iCursor

iCursor

Change your browser cursor in easy way!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "description": "__MSG_extDescription__",
  "version": "0.1.7",
  "default_locale": "en",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "customcursor.js"
      ]
    }
  ],
  "permissions": [
    "storage",
    "activeTab",
    "scripting",
    "tabs"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "/images/cc-icon128.png",
      "32": "/images/cc-icon128.png",
      "48": "/images/cc-icon128.png",
      "128": "/images/cc-icon128.png"
    }
  },
  "icons": {
    "16": "/images/cc-icon128.png",
    "32": "/images/cc-icon128.png",
    "48": "/images/cc-icon128.png",
    "128": "/images/cc-icon128.png"
  },
  "options_page": "options.html"
}