Custom Redirects

Extension allows to redirect any http request to any destination. Useful for debugging or blocking certain scripts.

Custom Redirects क्या है?

Custom Redirects Pawel Raszewski द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Extension allows to redirect any http request to any destination. Useful for debugging or blocking certain scripts."।

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

screenshot

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

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

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

                        This extension makes possible to redirect specified URLs to different locations. It may be very useful for debugging production sites which have minified JS which can be replaced for non-minified JS.

Any asset URL can be redirected to any destination, that means you can replace images, CSS, javascript files and everything that is loaded by a browser via HTTP request.                    

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

नाम Custom Redirects Custom Redirects
ID kekdllcidamgebonidegjekidhdihdli
आधिकारिक URL https://chromewebstore.google.com/detail/custom-redirects/kekdllcidamgebonidegjekidhdihdli
विवरण Extension allows to redirect any http request to any destination. Useful for debugging or blocking certain scripts.
फ़ाइल का आकार 135 KB
स्थापना संख्या 10,000
वर्तमान संस्करण 1.0.1
अंतिम अपडेट 2014-02-12
प्रकाशन तिथि 2014-02-12
रेटिंग 3.85/5 कुल 205 रेटिंग्स
डेवलपर Pawel Raszewski
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Custom Redirects",
    "version": "1.0.1",
    "description": "Extension allows to redirect any http request to any destination. Useful for debugging or blocking certain scripts.",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "",
        "webRequest",
        "webRequestBlocking"
    ],
    "icons": {
        "128": "assets_swapper_icon_128.png",
        "48": "assets_swapper_icon_48.png",
        "16": "assets_swapper_icon_16.png"
    },
    "options_page": "options.html",
    "page_action": {
        "default_icon": "assets_swapper_icon_48.png",
        "default_title": "Assets Swapper - Enabled here"
    }
}