Request Headers Editor

Edit request headers (add, modify, delete) for any domain. Aims to be fast via creating hooks instead of analysing each request.

Request Headers Editor란 무엇입니까?

Request Headers Editor은(는) AG에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Edit request headers (add, modify, delete) for any domain. Aims to be fast via creating hooks instead of analysing each request."입니다.

확장 프로그램 스크린샷

screenshot

Request Headers Editor 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        The options page gives you a simple ini-file editor, where each section represents a pattern, e.g., `https://*.example.com/`, & each key-value pair in the sections corresponds to a header name (say, referer or user-agent).

If you leave the value of the key empty, such header will be removed from subsequent requests.                    

확장 프로그램 기본 정보

이름 Request Headers Editor Request Headers Editor
ID ilnphcjchjmgfnoblebeachdjbhapapg
공식 URL https://chromewebstore.google.com/detail/request-headers-editor/ilnphcjchjmgfnoblebeachdjbhapapg
설명 Edit request headers (add, modify, delete) for any domain. Aims to be fast via creating hooks instead of analysing each request.
파일 크기 33.38 KB
설치 횟수 83
현재 버전 0.0.5
최근 업데이트 2023-04-08
출시 날짜 2019-04-08
개발자 AG
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/gromnitsky/request-headers-editor
도움말 페이지 URL https://github.com/gromnitsky/request-headers-editor/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Request Headers Editor",
    "description": "Edit request headers (add, modify, delete) for any domain. Aims to be fast via creating hooks instead of analysing each request.",
    "version": "0.0.5",
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "permissions": [
        "storage",
        "webRequest",
        "webRequestBlocking",
        ""
    ],
    "background": {
        "page": "background.html"
    },
    "icons": {
        "128": "icon128.png"
    },
    "browser_action": []
}