Referer Control

Control the HTTP Referer on a per-site basis.

Referer Control란 무엇입니까?

Referer Control은(는) https://keepa.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Control the HTTP Referer on a per-site basis."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Referer Control grants full control over the HTTP Referer. You can forge any referrer you want, both globally or on a per-site basis. Alternatively you can choose to disable the Referer completely.

Also works on the JavaScript document.referrer!                    

확장 프로그램 기본 정보

이름 Referer Control Referer Control
ID hnkcfpcejkafcihlgbojoidoihckciin
공식 URL https://chromewebstore.google.com/detail/referer-control/hnkcfpcejkafcihlgbojoidoihckciin
설명 Control the HTTP Referer on a per-site basis.
파일 크기 80.51 KB
설치 횟수 144,472
현재 버전 1.35
최근 업데이트 2018-12-27
출시 날짜 2018-12-27
평점 4.13/5 총 256 개의 평점
개발자 https://keepa.com
이메일 [email protected]
결제 유형 free
도움말 페이지 URL http://keepa.com/refererControlDisqus.html
개인정보 보호 정책 페이지 URL https://keepa.com/privacypolicy.html
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Referer Control",
    "version": "1.35",
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "webRequest",
        "webRequestBlocking",
        "contextMenus",
        "storage"
    ],
    "background": {
        "page": "chrome\/content\/background.html"
    },
    "manifest_version": 2,
    "homepage_url": "https:\/\/chrome.google.com\/webstore\/detail\/hnkcfpcejkafcihlgbojoidoihckciin",
    "options_page": "chrome\/content\/options.html",
    "description": "Control the HTTP Referer on a per-site basis.",
    "minimum_chrome_version": "17.0",
    "browser_action": {
        "default_icon": {
            "19": "icons\/icon-16.png",
            "38": "icons\/icon-32.png"
        },
        "default_title": "Block Referer for this site"
    },
    "externally_connectable": {
        "ids": [
            "*"
        ]
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "chrome\/content\/blockJavascriptReferer.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "128": "icons\/icon-128.png",
        "16": "icons\/icon-16.png",
        "32": "icons\/icon-32.png",
        "48": "icons\/icon-48.png"
    }
}