Custom Redirects

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

Hvad er Custom Redirects?

Custom Redirects er en Chrome-udvidelse udviklet af Pawel Raszewski, og dens hovedfunktion er "Extension allows to redirect any http request to any destination. Useful for debugging or blocking certain scripts.".

Udvidelsesskærmbilleder

screenshot

Download Custom Redirects-udvidelses-CRX-fil

Download Custom Redirects-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Custom Redirects Custom Redirects
ID kekdllcidamgebonidegjekidhdihdli
Officiel URL https://chromewebstore.google.com/detail/custom-redirects/kekdllcidamgebonidegjekidhdihdli
Beskrivelse Extension allows to redirect any http request to any destination. Useful for debugging or blocking certain scripts.
Filstørrelse 135 KB
Antal Installationer 10,000
Nuværende Version 1.0.1
Senest Opdateret 2014-02-12
Udgivelsesdato 2014-02-12
Bedømmelse 3.85/5 Samlet 205 Bedømmelser
Udvikler Pawel Raszewski
Betalingsmetode free
Understøttede Sprog 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"
    }
}