Inspect and view changes in Custom Cursors 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
{
"manifest_version": 2,
"name": "Custom Cursors",
"version": "1.0",
"description": "Customize your cursor with this extension.",
"permissions": [
"activeTab"
],
"browser_action": {
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"css": [
"styles.css"
],
"js": [
"content.js"
]
}
],
"browser_specific_settings": {
"gecko": {
"id": "{b88b795a-8d21-4d48-a508-6e12124ce9eb}"
}
}
}