Header-Editor

Alter your HTTP request headers on the fly

Header-Editorとは何ですか?

Header-Editorは67726eによって開発されたChromeの拡張機能で、その主な機能は「Alter your HTTP request headers on the fly」です。

拡張機能のスクリーンショット

screenshot
screenshot

Header-Editor拡張機能のCRXファイルをダウンロード

Header-Editor拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Header-Editor is an extension that will allow you to create and use arbitrary HTTP headers in Chrome.

The following permissions are needed for Header-Editor to run:

-  webRequest - Used to access the requests being sent out.
-  webRequestBlocking - So that headers are modified before being sent.
-   - All URLs are asked for since the extension cannot know ahead of time where it will be needed.

Note: Response headers do not appear in the Network Inspector, however they are supplied to your code. For more details, see:

- http://hexcoder.us/2013/08/08/response-headers-and-chrome-extensions/
- https://code.google.com/p/chromium/issues/detail?id=258064                    

拡張機能の基本情報

名前 Header-Editor Header-Editor
ID pkokmcnklmgbepioackopoknkdlhefjl
公式URL https://chromewebstore.google.com/detail/header-editor/pkokmcnklmgbepioackopoknkdlhefjl
説明 Alter your HTTP request headers on the fly
ファイルサイズ 131 KB
インストール数 7,008
現在のバージョン 2.2.0
最終更新日 2015-04-13
公開日 2015-04-13
評価 3.65/5 合計 17 レビュー
開発者 67726e
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Header-Editor",
    "description": "Alter your HTTP request headers on the fly",
    "version": "2.2.0",
    "default_locale": "en",
    "options_page": "\/src\/html\/options.html",
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        ""
    ],
    "browser_action": {
        "default_icon": ".\/resources\/images\/pencil-icon_48.png",
        "default_popup": "\/src\/html\/popup.html"
    },
    "background": {
        "scripts": [
            "\/src\/js\/background.js",
            "\/src\/js\/upgrade.js"
        ]
    },
    "icons": {
        "16": "\/resources\/images\/pencil-icon_16.png",
        "48": "\/resources\/images\/pencil-icon_48.png",
        "128": "\/resources\/images\/pencil-icon_128.png"
    }
}