Cat-catch Media sniffing

Cat-catch Media sniffing

Cat-catch media sniffing extension can help you filter the audio and video resources that list the current page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_extName__",
  "description": "__MSG_extDescription__",
  "background": {
    "service_worker": "js/background.js"
  },
  "action": {
    "default_icon": "img/icon.png",
    "default_title": "还没闻到味儿~",
    "default_popup": "popup.html"
  },
  "icons": {
    "64": "img/icon.png",
    "128": "img/icon128.png"
  },
  "manifest_version": 3,
  "minimum_chrome_version": "93",
  "homepage_url": "https://o2bmm.gitbook.io/cat-catch/?from=edge",
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "permissions": [
    "tabs",
    "webRequest",
    "downloads",
    "storage",
    "webNavigation",
    "alarms",
    "declarativeNetRequest",
    "scripting"
  ],
  "host_permissions": [
    "*://*/*",
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "js/content-script.js"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "catch-script/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "version": "2.3.1",
  "default_locale": "zh_CN",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}