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
官方網址 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
電子郵箱 [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"
    }
}