Never use a cursor you don't like again. Cursor pack brings hundreds cursors to the browser.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"background": {
"scripts": [
"js/jquery.js",
"js/listofcollection.js",
"background.js",
"analytics.js"
],
"persistent": true
},
"browser_action": {
"default_icon": {
"16": "icons/16.png",
"48": "icons/48.png",
"128": "icons/128.png"
},
"default_popup": "popup.html"
},
"content_scripts": [
{
"all_frames": true,
"js": [
"js/jquery.js",
"js/customCursor.js"
],
"matches": [
"<all_urls>"
]
}
],
"default_locale": "en",
"description": "__MSG_app_description__",
"icons": {
"16": "icons/16.png",
"48": "icons/48.png",
"128": "icons/128.png"
},
"manifest_version": 2,
"name": "__MSG_app_name__",
"options_page": "settings.html",
"content_security_policy": "script-src 'self' https://www.google-analytics.com https://www.googletagmanager.com https://*.googleapis.com blob:; object-src 'self'",
"permissions": [
"*://*/*",
"storage",
"webRequest",
"webRequestBlocking"
],
"version": "1.7.8",
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}