Detector APIs Extension

Detector APIs Extension

The extension supports getting all APIs and CURL command when load a website.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Detector APIs Extension",
  "description": "The extension supports getting all APIs and CURL command when load a website.",
  "version": "1.0.4",
  "action": {
    "default_popup": "src/popup.html",
    "default_icon": "images/detector-apis-extension.png"
  },
  "icons": {
    "128": "images/detector-apis-extension.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/constants.js",
        "js/utils.js"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "service_worker": "js/background.js"
  },
  "host_permissions": [
    "*://*/*"
  ],
  "permissions": [
    "storage",
    "activeTab",
    "tabs",
    "webRequest"
  ],
  "manifest_version": 3
}