Imposter 101 Among us Custom cursors

Imposter 101 Among us Custom cursors

Replaces the standard mouse cursor in the browser.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": " Imposter 101 Among us Custom cursors",
  "version": "22.32.19",
  "description": "Replaces the standard mouse cursor in the browser.",
  "permissions": [
    "*://mycursors.ru/*",
    "storage",
    "<all_urls>"
  ],
  "browser_action": {
    "default_popup": "views/popup.html"
  },
  "background": {
    "scripts": [
      "scripts/background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end",
      "js": [
        "scripts/cursorLoad.js"
      ]
    },
    {
      "all_frames": true,
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_idle",
      "js": [
        "scripts/cursorInject.js"
      ]
    }
  ],
  "icons": {
    "16": "assets/icons/icon16.png",
    "32": "assets/icons/icon32.png",
    "48": "assets/icons/icon48.png",
    "128": "assets/icons/icon128.png"
  }
}