Request Headers Editor

Edit request headers (add, modify, delete) for any domain. Aims to be fast via creating hooks instead of analysing each request.

什麼是Request Headers Editor?

Request Headers Editor是由AG開發的Chrome擴展程式,該擴展的主要功能是“Edit request headers (add, modify, delete) for any domain. Aims to be fast via creating hooks instead of analysing each request.”。

擴展截圖

screenshot

下載Request Headers Editor擴展crx文件

下載Request Headers Editor擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        The options page gives you a simple ini-file editor, where each section represents a pattern, e.g., `https://*.example.com/`, & each key-value pair in the sections corresponds to a header name (say, referer or user-agent).

If you leave the value of the key empty, such header will be removed from subsequent requests.                    

擴展基本資訊

名稱 Request Headers Editor Request Headers Editor
ID ilnphcjchjmgfnoblebeachdjbhapapg
官方網址 https://chromewebstore.google.com/detail/request-headers-editor/ilnphcjchjmgfnoblebeachdjbhapapg
簡介 Edit request headers (add, modify, delete) for any domain. Aims to be fast via creating hooks instead of analysing each request.
檔案大小 33.38 KB
安裝次數 83
目前版本 0.0.5
更新時間 2023-04-08
上架時間 2019-04-08
開發者 AG
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/gromnitsky/request-headers-editor
說明頁面URL https://github.com/gromnitsky/request-headers-editor/issues
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Request Headers Editor",
    "description": "Edit request headers (add, modify, delete) for any domain. Aims to be fast via creating hooks instead of analysing each request.",
    "version": "0.0.5",
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "permissions": [
        "storage",
        "webRequest",
        "webRequestBlocking",
        ""
    ],
    "background": {
        "page": "background.html"
    },
    "icons": {
        "128": "icon128.png"
    },
    "browser_action": []
}