Header-Editor

Alter your HTTP request headers on the fly

Header-Editor là gì?

Header-Editor là một tiện ích mở rộng Chrome được phát triển bởi 67726e, và tính năng chính của nó là "Alter your HTTP request headers on the fly".

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

screenshot
screenshot

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

Tải xuống các tệp mở rộng Header-Editor 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

                        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                    

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

Tên Header-Editor Header-Editor
ID pkokmcnklmgbepioackopoknkdlhefjl
URL Chính Thức https://chromewebstore.google.com/detail/header-editor/pkokmcnklmgbepioackopoknkdlhefjl
Mô tả Alter your HTTP request headers on the fly
Kích Thước Tệp 131 KB
Số Lần Cài Đặt 7,008
Phiên Bản Hiện Tại 2.2.0
Cập Nhật Lần Cuối 2015-04-13
Ngày Phát Hành 2015-04-13
Đánh Giá 3.65/5 Tổng số 17 Đánh Giá
Nhà Phát Triển 67726e
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}