Reject Service Worker

Reject Service Worker

Reject the service worker.

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_extensionName__",
  "description": "__MSG_extensionDescription__",
  "version": "0.9.0",
  "default_locale": "en",
  "author": "toshi",
  "homepage_url": "https://www.bugbugnow.net/",
  "minimum_chrome_version": "102.0",
  "background": {
    "service_worker": "/background.js"
  },
  "action": {
    "default_title": "__MSG_extensionName__",
    "default_popup": "/popup/popup.html"
  },
  "options_ui": {
    "page": "/options/options.html"
  },
  "content_scripts": [
    {
      "world": "ISOLATED",
      "all_frames": true,
      "matches": [
        "https://*/*"
      ],
      "match_about_blank": true,
      "match_origin_as_fallback": true,
      "run_at": "document_start",
      "js": [
        "/content_scripts/chrome.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "https://*/*"
      ],
      "resources": [
        "/content_scripts/chrome-main.js"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "storage"
  ]
}