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