Five Nights at Freddy's Cursor

Five Nights at Freddy's Cursor

Five Nights at Freddy's custom cursor for chrome. New browser experience with FNaF game cursor. Created for FNaF fans.

Merlin
Additional files are visible only to premium users

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 game cursor. Created for FNaF fans.",
  "name": "Five Nights at Freddy's Cursor",
  "background": {
    "service_worker": "fnafbackground.js"
  },
  "action": {
    "default_popup": "fnafpopup.html"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "fnafcontent.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": "80.780.241.71",
  "web_accessible_resources": [
    {
      "resources": [
        "cur/*.*"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ]
}