X-Forwarded-For Header

This extension allows you quickly to set the X-Forwarded-For HTTP Header

X-Forwarded-For Header क्या है?

X-Forwarded-For Header Philip Lawrence द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension allows you quickly to set the X-Forwarded-For HTTP Header"।

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

screenshot
screenshot

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

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

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

                        This extension allows you to quickly update the X-Forwarded-For, X-Originating-IP, X-Remote-IP, and X-Remote-Addr HTTP headers for various testing purposes.


Changelog:
v0.6.2 - Fixed a bug that interfered with the Firefox version of this extension
v0.6.1 - Fixes issue with CORS preflight requests
v0.6.0 - Allows for multiple IP addresses (space and/or comma delimited) and includes minor UI fixes
v0.5.0 - Added X-Originating-IP, X-Remote-IP, and X-Remote-Addr as header options. Added IPv6 ability                    

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

नाम X-Forwarded-For Header X-Forwarded-For Header
ID hkghghbnihliadkabmlcmcgmffllglin
आधिकारिक URL https://chromewebstore.google.com/detail/x-forwarded-for-header/hkghghbnihliadkabmlcmcgmffllglin
विवरण This extension allows you quickly to set the X-Forwarded-For HTTP Header
फ़ाइल का आकार 27.84 KB
स्थापना संख्या 60,915
वर्तमान संस्करण 0.6.2
अंतिम अपडेट 2020-06-27
प्रकाशन तिथि 2020-06-26
रेटिंग 4.61/5 कुल 18 रेटिंग्स
डेवलपर Philip Lawrence
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/MisterPhilip/x-forwarded-for
सहायता पृष्ठ URL https://github.com/MisterPhilip/x-forwarded-for/issues
गोपनीयता नीति पृष्ठ URL https://omnibug.io/privacy-policy
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "X-Forwarded-For Header",
    "description": "This extension allows you quickly to set the X-Forwarded-For HTTP Header",
    "author": "Philip Lawrence",
    "version": "0.6.2",
    "background": {
        "scripts": [
            "browser-polyfill.js",
            "eventPage.js"
        ],
        "persistent": true
    },
    "icons": {
        "32": "assets\/logo-32.png",
        "38": "assets\/logo-38.png",
        "64": "assets\/logo-64.png",
        "128": "assets\/logo-128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "assets\/logo-16-bw.png",
            "32": "assets\/logo-32-bw.png",
            "38": "assets\/logo-38-bw.png"
        },
        "default_title": "Set X-Forwarded-For IP",
        "default_popup": "options.html"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "permissions": [
        "storage",
        "webRequest",
        "webRequestBlocking",
        ""
    ]
}