simple-modify-headers

Simple Modify headers

simple-modify-headersとは何ですか?

simple-modify-headersはdidierfredによって開発されたChromeの拡張機能で、その主な機能は「Simple Modify headers」です。

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

screenshot

simple-modify-headers拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        The extension rewrite the headers based on a rules table.

It's possible to:

    add , modify or delete header field for HTTP(S) request or response
    export the configuration in a file (json format)
    import the configuration from a file 
    choose urls on which the modifications applies 

In order to work, the following extension permissions are needed :

    storage : needed to store the configuration 
    activeTab, tabs : needed to show the configuration screen in the browser tab.
    webRequest,webRequestBlocking, : needed to modify the headers

More information on https://github.com/didierfred/SimpleModifyHeaders

The code is opensource under Mozilla Public License 2.0                    

拡張機能の基本情報

名前 simple-modify-headers simple-modify-headers
ID gjgiipmpldkpbdfjkgofildhapegmmic
公式URL https://chromewebstore.google.com/detail/simple-modify-headers/gjgiipmpldkpbdfjkgofildhapegmmic
説明 Simple Modify headers
ファイルサイズ 139 KB
インストール数 14,752
現在のバージョン 1.8.1
最終更新日 2022-03-15
公開日 2019-09-17
評価 4.50/5 合計 12 レビュー
開発者 didierfred
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/didierfred/SimpleModifyHeaders/tree/v1.8.1
ヘルプページのURL https://github.com/didierfred/SimpleModifyHeaders/tree/v1.8.1
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Simple Modify headers ",
    "manifest_version": 2,
    "name": "simple-modify-headers",
    "version": "1.8.1",
    "homepage_url": "https:\/\/github.com\/didierfred\/SimpleModifyHeaders",
    "icons": {
        "48": "icons\/modify-48.png"
    },
    "permissions": [
        "storage",
        "webRequest",
        "webRequestBlocking",
        "",
        "tabs"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icons\/modify-32.png",
        "default_title": "Simple Modify Headers",
        "default_popup": "popup\/menu.html"
    }
}