NoRefer

Set and exclude HTTP headers on all requests

NoRefer क्या है?

NoRefer djb द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Set and exclude HTTP headers on all requests"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में NoRefer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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