simple-modify-headers

Simple Modify headers

simple-modify-headers란 무엇입니까?

simple-modify-headers은(는) didierfred에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Simple Modify headers"입니다.

확장 프로그램 스크린샷

screenshot

simple-modify-headers 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        The extension rewrite the headers based on a rules table.

It's possible to:

    add , modify or delete header field for HTTP(S) request or response
    export the configuration in a file (json format)
    import the configuration from a file 
    choose urls on which the modifications applies 

In order to work, the following extension permissions are needed :

    storage : needed to store the configuration 
    activeTab, tabs : needed to show the configuration screen in the browser tab.
    webRequest,webRequestBlocking, : needed to modify the headers

More information on https://github.com/didierfred/SimpleModifyHeaders

The code is opensource under Mozilla Public License 2.0                    

확장 프로그램 기본 정보

이름 simple-modify-headers simple-modify-headers
ID gjgiipmpldkpbdfjkgofildhapegmmic
공식 URL https://chromewebstore.google.com/detail/simple-modify-headers/gjgiipmpldkpbdfjkgofildhapegmmic
설명 Simple Modify headers
파일 크기 139 KB
설치 횟수 14,752
현재 버전 1.8.1
최근 업데이트 2022-03-15
출시 날짜 2019-09-17
평점 4.50/5 총 12 개의 평점
개발자 didierfred
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/didierfred/SimpleModifyHeaders/tree/v1.8.1
도움말 페이지 URL https://github.com/didierfred/SimpleModifyHeaders/tree/v1.8.1
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Simple Modify headers ",
    "manifest_version": 2,
    "name": "simple-modify-headers",
    "version": "1.8.1",
    "homepage_url": "https:\/\/github.com\/didierfred\/SimpleModifyHeaders",
    "icons": {
        "48": "icons\/modify-48.png"
    },
    "permissions": [
        "storage",
        "webRequest",
        "webRequestBlocking",
        "",
        "tabs"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icons\/modify-32.png",
        "default_title": "Simple Modify Headers",
        "default_popup": "popup\/menu.html"
    }
}