NoRefer

Set and exclude HTTP headers on all requests

什么是NoRefer?

NoRefer是由djb开发的Chrome扩展程序,该扩展的主要功能是“Set and exclude HTTP headers on all requests”。

扩展截图

screenshot

下载NoRefer扩展crx文件

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

扩展使用说明

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