Referer Control

Control the HTTP Referer on a per-site basis.

Co to jest Referer Control?

Referer Control to rozszerzenie Chrome opracowane przez https://keepa.com, a jego główną funkcją jest „Control the HTTP Referer on a per-site basis.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Referer Control

Pobierz pliki rozszerzeń Referer Control w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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!                    

Podstawowe informacje o rozszerzeniu

Nazwa Referer Control Referer Control
ID hnkcfpcejkafcihlgbojoidoihckciin
Oficjalny URL https://chromewebstore.google.com/detail/referer-control/hnkcfpcejkafcihlgbojoidoihckciin
Opis Control the HTTP Referer on a per-site basis.
Rozmiar pliku 80.51 KB
Liczba instalacji 144,472
Aktualna Wersja 1.35
Ostatnia Aktualizacja 2018-12-27
Data Publikacji 2018-12-27
Ocena 4.13/5 Łącznie 256 Oceny
Deweloper https://keepa.com
E-mail [email protected]
Typ Płatności free
Adres URL Strony Pomocy http://keepa.com/refererControlDisqus.html
Adres URL Strony Polityki Prywatności https://keepa.com/privacypolicy.html
Obsługiwane Języki 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"
    }
}