simple-modify-headers

Simple Modify headers

simple-modify-headers là gì?

simple-modify-headers là một tiện ích mở rộng Chrome được phát triển bởi didierfred, và tính năng chính của nó là "Simple Modify headers".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng simple-modify-headers

Tải xuống các tệp mở rộng simple-modify-headers dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên simple-modify-headers simple-modify-headers
ID gjgiipmpldkpbdfjkgofildhapegmmic
URL Chính Thức https://chromewebstore.google.com/detail/simple-modify-headers/gjgiipmpldkpbdfjkgofildhapegmmic
Mô tả Simple Modify headers
Kích Thước Tệp 139 KB
Số Lần Cài Đặt 14,752
Phiên Bản Hiện Tại 1.8.1
Cập Nhật Lần Cuối 2022-03-15
Ngày Phát Hành 2019-09-17
Đánh Giá 4.50/5 Tổng số 12 Đánh Giá
Nhà Phát Triển didierfred
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/didierfred/SimpleModifyHeaders/tree/v1.8.1
URL Trang Trợ Giúp https://github.com/didierfred/SimpleModifyHeaders/tree/v1.8.1
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}