MOCK-PLUS

MOCK-PLUS

MOCK-PLUS

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "MOCK-PLUS",
  "version": "3.0.3",
  "description": "MOCK-PLUS",
  "icons": {
    "16": "assets/mao_128x128.png",
    "48": "assets/mao_128x128.png",
    "128": "assets/mao_128x128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": "assets/mao_128x128.png",
    "default_title": "MOCK-PLUS",
    "default_popup": "index.html#/popup"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-script.js"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "declarativeNetRequest",
    "declarativeNetRequestFeedback",
    "storage",
    "downloads",
    "tabs"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "options_ui": {
    "page": "index.html#/options"
  },
  "devtools_page": "devtools.html"
}