Inspect and view changes in Change Cursor - Custom Cursor 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": "Change Cursor - Custom Cursor for Edge",
"homepage_url": "https://changecursor.com/",
"description": "Change custom Edge cursor to awesome one or create your own!",
"version": "1.0.4",
"icons": {
"128": "icons/128.png"
},
"background": {
"service_worker": "service_worker.js"
},
"manifest_version": 3,
"content_scripts": [
{
"matches": [
"https://changecursor.com/*",
"http://changecursor.com/*"
],
"js": [
"exports.js",
"shared/Canvas.js",
"content-changecursor.js"
],
"run_at": "document_start"
},
{
"matches": [
"https://changecursor.com/constructor/*"
],
"js": [
"constructor.js"
],
"run_at": "document_start"
},
{
"matches": [
"https://*/*",
"http://*/*"
],
"js": [
"content.js"
],
"run_at": "document_start"
}
],
"permissions": [
"storage",
"unlimitedStorage",
"scripting"
],
"host_permissions": [
"*://*/*"
],
"action": {
"default_title": "Change cursor",
"default_popup": "index.html",
"default_icon": "icons/128.png"
},
"web_accessible_resources": [
{
"resources": [
"cursors/*"
],
"matches": [
"https://changecursor.com/*",
"http://changecursor.com/*"
]
}
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}