Request Header Hook

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

Request Header Hook란 무엇입니까?

Request Header Hook은(는) 赵杨阳에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "set your Cookie, Referer, and User-Agent policy for any sites"입니다.

확장 프로그램 스크린샷

screenshot

Request Header Hook 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Request Header Hook Request Header Hook
ID iilhbfbdfaflfgiddlnmbnbgeclamkdj
공식 URL https://chromewebstore.google.com/detail/request-header-hook/iilhbfbdfaflfgiddlnmbnbgeclamkdj
설명 set your Cookie, Referer, and User-Agent policy for any sites
파일 크기 80.76 KB
설치 횟수 184
현재 버전 1.0.3
최근 업데이트 2013-04-12
출시 날짜 2013-04-12
평점 5.00/5 총 4 개의 평점
개발자 赵杨阳
결제 유형 free
지원되는 언어 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"
}