Request Header Hook

set your Cookie, Referer, and User-Agent policy for any sites

Request Header Hook là gì?

Request Header Hook là một tiện ích mở rộng Chrome được phát triển bởi 赵杨阳, và tính năng chính của nó là "set your Cookie, Referer, and User-Agent policy for any sites".

Ả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 Request Header Hook

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

                        Request Header Hook is a chrome extension that can set your Cookie, Referer, and User-Agent policy for any sites. 

Features of version 1.0.3:
1. Support Referer, Cookie, User Agent hook.
2. Multi-policy supported with enable/disable feature.
2. Support 4 kinds of rules: noop, empty, fixed and extra (only for Cookie).
3. Support importing and exporting policies.
4. Support global enable/disable extension.
5. URL and Cookie format check.

Open Source Project:https://github.com/Angelbear/fake_request_header

Special Thanks: uu59@github
This project is forked and modified from https://github.com/uu59/fake-request-header                    

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

Tên Request Header Hook Request Header Hook
ID iilhbfbdfaflfgiddlnmbnbgeclamkdj
URL Chính Thức https://chromewebstore.google.com/detail/request-header-hook/iilhbfbdfaflfgiddlnmbnbgeclamkdj
Mô tả set your Cookie, Referer, and User-Agent policy for any sites
Kích Thước Tệp 80.76 KB
Số Lần Cài Đặt 184
Phiên Bản Hiện Tại 1.0.3
Cập Nhật Lần Cuối 2013-04-12
Ngày Phát Hành 2013-04-12
Đánh Giá 5.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển 赵杨阳
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "browser_action": {
        "default_icon": "icons\/icon.png",
        "default_popup": "popup_page\/index.html"
    },
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "set your Cookie, Referer, and User-Agent policy for any sites",
    "background": {
        "scripts": [
            "datastore.js",
            "policy.js",
            "events.js"
        ]
    },
    "name": "Request Header Hook",
    "options_page": "options_page\/index.html",
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "notifications"
    ],
    "icons": {
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png",
        "32": "icons\/icon_32.png",
        "64": "icons\/icon_64.png",
        "16": "icons\/icon_16.png"
    },
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "version": "1.0.3"
}