Among Us Online Edition for Chrome

Among Us Online Edition for Chrome

Expand the fun in Among Us with our Chrome extension! Discover tricks, skins, and more to enhance your gaming experience.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "version": "1.0.5",
  "default_locale": "en",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "action": {
    "default_icon": {
      "128": "icon128.png"
    }
  },
  "web_accessible_resources": [
    {
      "resources": [
        "*.css",
        "*.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "background": {
    "service_worker": "worker.js"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [
        "*://*.html5.gamemonetize.co/*"
      ],
      "run_at": "document_start",
      "css": [
        "css/index.css"
      ]
    },
    {
      "matches": [
        "*://*.html5.gamedistribution.com/*",
        "*://*.html5.gamemonetize.games/*"
      ],
      "css": [
        "css/index.css"
      ],
      "js": [
        "js/autoplay.js"
      ],
      "all_frames": true,
      "run_at": "document_start"
    }
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "ruleset",
        "enabled": true,
        "path": "rules.json"
      }
    ]
  },
  "permissions": [
    "activeTab",
    "background",
    "scripting",
    "storage",
    "declarativeNetRequest"
  ],
  "host_permissions": [
    "<all_urls>"
  ]
}