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
公式URL 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
Eメール [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": []
}