Custom Redirects

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

Was ist Custom Redirects?

Custom Redirects ist eine Chrome-Erweiterung, die von Pawel Raszewski entwickelt wurde, und ihr Hauptmerkmal ist "Extension allows to redirect any http request to any destination. Useful for debugging or blocking certain scripts.".

Erweiterungsscreenshots

screenshot

Custom Redirects-Erweiterungs-CRX-Datei herunterladen

Laden Sie Custom Redirects-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Custom Redirects Custom Redirects
ID kekdllcidamgebonidegjekidhdihdli
Offizielle URL https://chromewebstore.google.com/detail/custom-redirects/kekdllcidamgebonidegjekidhdihdli
Beschreibung Extension allows to redirect any http request to any destination. Useful for debugging or blocking certain scripts.
Dateigröße 135 KB
Installationsanzahl 10,000
Aktuelle Version 1.0.1
Letztes Update 2014-02-12
Veröffentlichungsdatum 2014-02-12
Bewertung 3.85/5 Insgesamt 205 Bewertungen
Entwickler Pawel Raszewski
Zahlungsart free
Unterstützte Sprachen 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"
    }
}