IHeader

Monitor and modify the request and response header of the page.

IHeader là gì?

IHeader là một tiện ích mở rộng Chrome được phát triển bởi louis, và tính năng chính của nó là "Monitor and modify the request and response header of the page.".

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

screenshot
screenshot
screenshot
screenshot

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

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

                        Monitor and modify the request and response header of the page.
IHeader可以新增、删除或编辑任意指定url的请求响应头,并且即使浏览器重启后,全局监听器依然有效。它适合用于HTTP缓存研究,HTTP接口字段调试,甚至还可以为接口调试时的跨域问题提供临时的解决方案(本人基于此完成了很多跨域接口的调试工作)。因此,只要您基于HTTP请求响应头去做事情,IHeader都可以帮您简化工作。至于如何使用,这里有一个向导:https://github.com/Louiszhai/IHeader/                    

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

Tên IHeader IHeader
ID polajedphjkpjbfljoabmcejpcckeked
URL Chính Thức https://chromewebstore.google.com/detail/iheader/polajedphjkpjbfljoabmcejpcckeked
Mô tả Monitor and modify the request and response header of the page.
Kích Thước Tệp 58.49 KB
Số Lần Cài Đặt 380
Phiên Bản Hiện Tại 1.2.0
Cập Nhật Lần Cuối 2017-09-08
Ngày Phát Hành 2017-09-08
Đánh Giá 4.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển louis
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/Louiszhai/IHeader/
URL Trang Trợ Giúp https://github.com/Louiszhai/IHeader/issues
Ngôn Ngữ Được Hỗ Trợ en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "IHeader",
    "version": "1.2.0",
    "icons": {
        "128": "res\/images\/lightning_green128.png",
        "32": "res\/images\/lightning_green.png",
        "64": "res\/images\/lightning_green64.png"
    },
    "page_action": {
        "default_title": "IHeader",
        "default_icon": "res\/images\/lightning_default.png",
        "default_popup": "res\/index.html"
    },
    "background": {
        "persistent": true,
        "scripts": [
            "res\/js\/message.js",
            "res\/js\/background.js",
            "res\/js\/proxy.js"
        ]
    },
    "commands": {
        "toggle_status": {
            "suggested_key": {
                "default": "Alt+H",
                "windows": "Alt+H",
                "mac": "Alt+H",
                "chromeos": "Alt+H",
                "linux": "Alt+H"
            },
            "description": "Toggle IHeader"
        }
    },
    "content_scripts": [
        {
            "all_frames": false,
            "matches": [
                ""
            ],
            "js": [
                "res\/js\/message.js",
                "res\/js\/content.js"
            ]
        }
    ],
    "default_locale": "en",
    "description": "__MSG_description__",
    "manifest_version": 2,
    "minimum_chrome_version": "26.0",
    "options_page": "res\/options.html",
    "permissions": [
        "tabs",
        "webRequest",
        "webRequestBlocking",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "contextMenus",
        "notifications",
        "proxy"
    ]
}