Examine source code of Cute Custom Cursors for Edge

Inspect and view changes in Cute Custom Cursors for Edge source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "name": "Cute Custom Cursors for Edge",
  "description": "Now you can personalize your browser with the ultimate cursor collection!",
  "version": "3.8.26.80",
  "manifest_version": 3,
  "icons": {
    "16": "./asset/icon_16.png",
    "24": "./asset/icon_24.png",
    "32": "./asset/icon_32.png",
    "48": "./asset/icon_48.png",
    "128": "./asset/icon_128.png"
  },
  "action": {
    "default_icon": "./asset/icon_32.png",
    "default_title": "__MSG_defTitle__",
    "default_popup": "./html/PopUp.html"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "permissions": [
    "storage",
    "unlimitedStorage",
    "tabs",
    "scripting",
    "declarativeNetRequest",
    "gcm",
    "cookies"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*",
    "*://*/*"
  ],
  "content_scripts": [
    {
      "js": [
        "js/ContentScript.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "all_frames": true,
      "run_at": "document_start"
    }
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "rules1",
        "enabled": true,
        "path": "r-1.json"
      }
    ]
  },
  "web_accessible_resources": [
    {
      "resources": [
        "js/initCursor.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}