按需代理

按需代理

定制化制定自己的代理规则

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "按需代理",
  "version": "1.1",
  "description": "定制化制定自己的代理规则",
  "short_name": "代理",
  "options_ui": {
    "page": "manager.html"
  },
  "action": {
    "default_icon": "imgs/icon16.png",
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "icons": {
    "16": "imgs/icon16.png",
    "24": "imgs/icon24.png",
    "32": "imgs/icon32.png",
    "48": "imgs/icon48.png",
    "64": "imgs/icon64.png",
    "72": "imgs/icon72.png",
    "96": "imgs/icon96.png",
    "128": "imgs/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://proxy.qianrong.net/proxy/loginToChrome"
      ],
      "run_at": "document_start",
      "all_frames": true,
      "js": [
        "js/content_script.js"
      ]
    }
  ],
  "permissions": [
    "proxy",
    "tabs",
    "webRequest",
    "webRequestAuthProvider",
    "storage",
    "<all_urls>"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "manager.html"
      ],
      "matches": [
        "https://proxy.qianrong.net/*"
      ]
    }
  ],
  "host_permissions": [
    "<all_urls>"
  ]
}