Interceptor

Interceptor

Interceptor

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Interceptor",
  "description": "Interceptor",
  "version": "0.0.89",
  "manifest_version": 3,
  "action": {
    "default_icon": {
      "128": "img/head-not-active.png"
    },
    "default_title": "The Interceptor"
  },
  "background": {
    "service_worker": "./js/backgroundServiceWorker.js",
    "type": "module"
  },
  "icons": {
    "128": "img/head.png",
    "400": "img/LOGOA_400x400.png"
  },
  "permissions": [
    "activeTab",
    "storage",
    "scripting"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "vendor/*",
        "js/*",
        "inpage/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "host_permissions": [
    "file://*/*",
    "http://*/*",
    "https://*/*"
  ]
}