修改 HTTP 请求头

修改 HTTP 请求头

扩展用于修改 HTTP 请求头,基本用法包括:1、更改标题的值;2、添加或删除标题;3、编辑预设值。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_extName__",
  "description": "__MSG_extDesc__",
  "version": "3.7",
  "icons": {
    "128": "logo.png"
  },
  "browser_action": {
    "default_icon": "logo.png",
    "default_popup": "popup.html"
  },
  "options_page": "config.html",
  "permissions": [
    "http://*/*",
    "https://*/*",
    "webRequest",
    "webRequestBlocking",
    "storage"
  ],
  "default_locale": "zh_CN",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  }
}