Custom Redirects

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

Co je Custom Redirects?

Custom Redirects je rozšíření Chrome vyvinuté Pawel Raszewski, a jeho hlavní funkcí je „Extension allows to redirect any http request to any destination. Useful for debugging or blocking certain scripts.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Custom Redirects

Stáhněte si soubory rozšíření Custom Redirects ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Custom Redirects Custom Redirects
ID kekdllcidamgebonidegjekidhdihdli
Oficiální URL https://chromewebstore.google.com/detail/custom-redirects/kekdllcidamgebonidegjekidhdihdli
Popis Extension allows to redirect any http request to any destination. Useful for debugging or blocking certain scripts.
Velikost souboru 135 KB
Počet instalací 10,000
Aktuální Verze 1.0.1
Poslední Aktualizace 2014-02-12
Datum Vydání 2014-02-12
Hodnocení 3.85/5 Celkem 205 Hodnocení
Vývojář Pawel Raszewski
Typ Platby free
Podporované Jazyky 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"
    }
}