Referer Manager

Control your referer headers. Apply flexible rules to block, allow, or change HTTP referer.

Referer Manager क्या है?

Referer Manager Kornelia Olofsson द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Control your referer headers. Apply flexible rules to block, allow, or change HTTP referer."।

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

screenshot

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

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

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

                        Referer manager changes HTTP referer with flexible configuration. You can spoof a referrer for some reason. It could be helpful for developers and marketers. 

Features:
✰ Block, allow, change referrers
✰ Applies to both referrer HTTP headers and javascript document.referrer value
✰ Apply rules for a specific domain, URL, or even using regular expressions
✰ You can apply a rule to requests originated from a specific domain to requests to a specific domain, or only to 3rd party requests.

Please note, that by default JS referrer spoofing is disabled. It could break functionality on some sites.                    

एक्सटेंशन की मूल जानकारी

नाम Referer Manager Referer Manager
ID fpfmkkljdiofokoikgglafnfmmffmmhc
आधिकारिक URL https://chrome.google.com/webstore/detail/referer-manager/fpfmkkljdiofokoikgglafnfmmffmmhc
विवरण Control your referer headers. Apply flexible rules to block, allow, or change HTTP referer.
फ़ाइल का आकार 265 KB
स्थापना संख्या 934,095
वर्तमान संस्करण 1.5.3
अंतिम अपडेट 2022-09-16
प्रकाशन तिथि 2021-05-16
रेटिंग 4.70/5 कुल 10 रेटिंग्स
डेवलपर Kornelia Olofsson
ईमेल [email protected]
भुगतान के प्रकार free
गोपनीयता नीति पृष्ठ URL https://www.notion.so/Referer-Manager-Privacy-Policy-7b2e9594e2d34e4d9eb7bbe5a597f347
समर्थित भाषाएँ id,ms,de,en,en-GB,en-US,fil,fr,nl,no,vi,tr,ca,da,et,es,hr,it,lv,lt,hu,pl,pt-BR,pt-PT,ro,sk,sl,fi,sv,cs,el,sr,bg,ru,mr,hi,bn,gu,ta,te,ml,th,zh-CN,zh-TW,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "browser_action": {
        "default_icon": {
            "300": "icons\/icon-300.png",
            "128": "icons\/icon-128.png",
            "48": "icons\/icon-48.png",
            "16": "icons\/icon-16.png"
        },
        "default_title": "Block Referer for this site"
    },
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'",
    "icons": {
        "300": "icons\/icon-300.png",
        "128": "icons\/icon-128.png",
        "48": "icons\/icon-48.png",
        "16": "icons\/icon-16.png"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "js\/blockJavascriptReferer.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "page": "html\/background.html",
        "persistent": true
    },
    "options_page": "html\/options.html",
    "default_locale": "en",
    "manifest_version": 2,
    "name": "__MSG_name__",
    "description": "__MSG_description__",
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "webRequest",
        "webRequestBlocking",
        "storage"
    ],
    "version": "1.5.3"
}