Header-Editor

Alter your HTTP request headers on the fly

Header-Editor란 무엇입니까?

Header-Editor은(는) 67726e에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Alter your HTTP request headers on the fly"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Header-Editor 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Header-Editor Header-Editor
ID pkokmcnklmgbepioackopoknkdlhefjl
공식 URL https://chromewebstore.google.com/detail/header-editor/pkokmcnklmgbepioackopoknkdlhefjl
설명 Alter your HTTP request headers on the fly
파일 크기 131 KB
설치 횟수 7,008
현재 버전 2.2.0
최근 업데이트 2015-04-13
출시 날짜 2015-04-13
평점 3.65/5 총 17 개의 평점
개발자 67726e
결제 유형 free
지원되는 언어 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"
    }
}