Examine source code of Custom Cursor Trails

Inspect and view changes in Custom Cursor Trails 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
{
  "action": {
    "default_icon": {
      "32": "images/icons/32.png",
      "64": "images/icons/64.png",
      "128": "images/icons/128.png",
      "256": "images/icons/256.png"
    },
    "default_popup": "index.html",
    "default_title": "__MSG_title__"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "content.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": {
    "isolated_world": "script-src 'self' 'unsafe-eval'; object-src 'self'"
  },
  "default_locale": "en",
  "description": "__MSG_description__",
  "externally_connectable": {
    "matches": [
      "*://*.custom-cursor.com/*",
      "*://*.custom-cursor-trails.com/*"
    ]
  },
  "host_permissions": [
    "*://*/*",
    "<all_urls>"
  ],
  "icons": {
    "32": "/images/icons/32.png",
    "64": "/images/icons/64.png",
    "128": "/images/icons/128.png",
    "256": "/images/icons/256.png"
  },
  "manifest_version": 3,
  "name": "Custom Cursor Trails",
  "options_page": "index.html",
  "permissions": [
    "scripting",
    "storage",
    "unlimitedStorage",
    "notifications",
    "alarms"
  ],
  "short_name": "CursorTrail",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx",
  "version": "4.0.5",
  "web_accessible_resources": [
    {
      "matches": [
        "*://*/*"
      ],
      "resources": [
        "images/*.*"
      ]
    }
  ]
}