NoRefer

Set and exclude HTTP headers on all requests

NoRefer란 무엇입니까?

NoRefer은(는) djb에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Set and exclude HTTP headers on all requests"입니다.

확장 프로그램 스크린샷

screenshot

NoRefer 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        NoRefer

https://github.com/c475/NoRefer

Enter one header and optional replacement value per line




To block an HTTP header from your requests:

===================================

Referer

===================================


To spoof an HTTP header in your requests:

===================================

Referer: https://somegarbagewebsite.com/

===================================




Exclude all headers starting with "Accept" (the # signals a Regular Expression):

===================================

#Accept.*

===================================



Make all headers starting with "Accept" a particular value:

===================================

#Accept.*: SomeValue

===================================



All regular expressions are generally permitted, except ones containing ':' because it breaks the parser




A full example config and explanation of what it does:

===================================

#Accept.*: SomeValue
Referer
User-Agent: CoolAgent4000
#Co.*

===================================

1. All headers starting with "Accept" will have the value "SomeValue"
2. "Referer" will be removed from your request headers
3. "User-Agent" headers will have the value "CoolAgent4000"
4. All headers starting with "Co" will be removed from your request headers                    

확장 프로그램 기본 정보

이름 NoRefer NoRefer
ID iokokaclomnglegfinhjjpmmgeacccki
공식 URL https://chromewebstore.google.com/detail/norefer/iokokaclomnglegfinhjjpmmgeacccki
설명 Set and exclude HTTP headers on all requests
파일 크기 22.46 KB
설치 횟수 554
현재 버전 1.5
최근 업데이트 2019-03-30
출시 날짜 2019-03-29
평점 5.00/5 총 3 개의 평점
개발자 djb
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/c475/NoRefer
도움말 페이지 URL https://github.com/c475/NoRefer
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "NoRefer",
    "description": "Set and exclude HTTP headers on all requests",
    "version": "1.5",
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        ""
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "cat16.png",
        "default_title": "NoRefer",
        "default_popup": "panel.html"
    },
    "icons": {
        "16": "cat16.png",
        "48": "cat48.png",
        "128": "cat128.png"
    }
}