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文件

下载Referer Control扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
    }
}