Request X

Intercept requests and cookies by flexible rules.

Request X क्या है?

Request X gera2ld द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Intercept requests and cookies by flexible rules."।

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

screenshot
screenshot
screenshot

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

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

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

                        Source code: https://github.com/gera2ld/request-x

Features:
- Block requests by methods and URL patterns
- Maintainable lists
- Easy to share your lists with others
- Redirect requests
- Modify headers
- Modify cookie properties like SameSite

Use cases:
- Debug APIs but avoid unexpected mutations
- Block unwanted contents in an extremely flexible way
- Set authorization header to avoid inputing username/password again and again
- Set CORS header to allow certain cross-site requests without server changes
- Change SameSite for old services to work on latest browsers
- ...

Tested on Chrome >= 70. It is highly recommended to use on latest versions.                    

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

नाम Request X Request X
ID cblonkdlnemhdeefhmaoiijjaedcphbf
आधिकारिक URL https://chromewebstore.google.com/detail/request-x/cblonkdlnemhdeefhmaoiijjaedcphbf
विवरण Intercept requests and cookies by flexible rules.
फ़ाइल का आकार 90.07 KB
स्थापना संख्या 5,047
वर्तमान संस्करण 2.5.2
अंतिम अपडेट 2022-08-24
प्रकाशन तिथि 2019-06-04
रेटिंग 4.83/5 कुल 18 रेटिंग्स
डेवलपर gera2ld
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/gera2ld/request-x
सहायता पृष्ठ URL https://github.com/gera2ld/request-x/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Request X",
    "version": "2.5.2",
    "minimum_chrome_version": "50",
    "manifest_version": 2,
    "description": "Intercept requests and cookies by flexible rules.",
    "author": {
        "name": "Gerald",
        "url": "https:\/\/gerald.top"
    },
    "icons": {
        "16": "public\/images\/icon_16.png",
        "48": "public\/images\/icon_48.png",
        "128": "public\/images\/icon_128.png"
    },
    "default_locale": "en",
    "browser_action": {
        "browser_style": true,
        "default_icon": {
            "19": "public\/images\/icon_19.png",
            "38": "public\/images\/icon_38.png"
        },
        "default_title": "Request X",
        "default_popup": "popup\/index.html"
    },
    "background": {
        "scripts": [
            "browser.js",
            "handler.js"
        ]
    },
    "options_ui": {
        "page": "options\/index.html",
        "open_in_tab": true
    },
    "devtools_page": "devtools\/index.html",
    "permissions": [
        "",
        "webRequest",
        "webRequestBlocking",
        "storage",
        "alarms",
        "cookies"
    ]
}