showProxyTarget

showProxyTarget

在开发者工具F12 proxyTarget 面板中显示 http-proxy 的目标地址, 方便开发人员调试接口

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "showProxyTarget",
  "version": "0.1.3",
  "description": "在开发者工具F12 proxyTarget 面板中显示 http-proxy 的目标地址, 方便开发人员调试接口",
  "icons": {
    "16": "img/icon.png",
    "48": "img/icon.png",
    "128": "img/icon.png"
  },
  "browser_action": {
    "default_icon": "img/icon.png",
    "default_title": "showProxyTarget"
  },
  "permissions": [
    "contextMenus",
    "tabs",
    "webRequest",
    "webRequestBlocking"
  ],
  "web_accessible_resources": [
    "js/inject.js"
  ],
  "homepage_url": "https://github.com/04637",
  "omnibox": {
    "keyword": "proxy-target"
  },
  "devtools_page": "showProxyTarget.html"
}