Five Nights at Freddy's custom cursor for chrome. New browser experience with FNaF cursor. Created for Five Nights at Freddy's fans.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"description": "Five Nights at Freddy's custom cursor for chrome. New browser experience with FNaF cursor. Created for Five Nights at Freddy's fans.",
"name": "Five Nights at Freddy's Cursor",
"background": {
"service_worker": "nicecursorbackground.js"
},
"action": {
"default_popup": "nicecursorpopup.html"
},
"content_scripts": [
{
"all_frames": true,
"js": [
"nicecursorcontent.js"
],
"matches": [
"*://*/*"
],
"run_at": "document_start"
}
],
"icons": {
"16": "img/icon16.png",
"48": "img/icon48.png",
"128": "img/icon128.png"
},
"manifest_version": 3,
"permissions": [
"storage"
],
"version": "50.10.10.72",
"web_accessible_resources": [
{
"resources": [
"cur/*.*"
],
"matches": [
"*://*/*"
]
}
]
}