simple-modify-headers

Simple Modify headers

simple-modify-headersคืออะไร?

simple-modify-headers เป็นส่วนขยายของ Chrome ที่พัฒนาโดย didierfred และคุณลักษณะหลักของมันคือ "Simple Modify headers"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย simple-modify-headers

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
    }
}