Request Interceptor

Intercept Requests and add custom rules to modify request/response headers, block/redirect requests, modify query params.

Request Interceptor क्या है?

Request Interceptor Vinay Kaparthi द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Intercept Requests and add custom rules to modify request/response headers, block/redirect requests, modify query params."।

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

screenshot
screenshot

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

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

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

                        This extension helps in building rules(conditions) which when met will help in 

1. redirect/block http requests
2. throttle response of static resources
3. add/modify/delete request/response http headers
4. add/modify/delete http query parameters                    

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

नाम Request Interceptor Request Interceptor
ID bfgblailifedppfilabonohepkofbkpm
आधिकारिक URL https://chromewebstore.google.com/detail/request-interceptor/bfgblailifedppfilabonohepkofbkpm
विवरण Intercept Requests and add custom rules to modify request/response headers, block/redirect requests, modify query params.
फ़ाइल का आकार 1.89 MB
स्थापना संख्या 10,000
वर्तमान संस्करण 1.6.0
अंतिम अपडेट 2023-10-23
प्रकाशन तिथि 2020-06-01
रेटिंग 4.05/5 कुल 55 रेटिंग्स
डेवलपर Vinay Kaparthi
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "author": "Vinay Kumar Kaparthi",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "32": "images\/logo_64.png"
        },
        "default_title": "Request Interceptor"
    },
    "description": "Intercept Requests and add custom rules to modify request\/response headers, block\/redirect requests, modify query params.",
    "icons": {
        "128": "images\/logo_128.png",
        "32": "images\/logo_32.png",
        "48": "images\/logo_48.png",
        "64": "images\/logo_64.png"
    },
    "manifest_version": 2,
    "minimum_chrome_version": "80",
    "name": "Request Interceptor",
    "options_page": "index.html",
    "permissions": [
        "tabs",
        "webRequest",
        "webRequestBlocking",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage",
        "unlimitedStorage"
    ],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "1.6.0",
    "content_security_policy": "style-src-elem 'self' 'unsafe-inline' https:\/\/fonts.googleapis.com\/css blob:;style-src 'self' 'unsafe-inline';"
}