Custom Redirects

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

Qu'est-ce que Custom Redirects ?

Custom Redirects est une extension Chrome développée par Pawel Raszewski, et sa fonction principale est "Extension allows to redirect any http request to any destination. Useful for debugging or blocking certain scripts.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Custom Redirects

Téléchargez les fichiers d'extension Custom Redirects au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Custom Redirects Custom Redirects
ID kekdllcidamgebonidegjekidhdihdli
URL Officiel https://chromewebstore.google.com/detail/custom-redirects/kekdllcidamgebonidegjekidhdihdli
Description Extension allows to redirect any http request to any destination. Useful for debugging or blocking certain scripts.
Taille du Fichier 135 KB
Nombre d'Installations 10,000
Version Actuelle 1.0.1
Dernière Mise à Jour 2014-02-12
Date de Publication 2014-02-12
Évaluation 3.85/5 Total 205 Évaluations
Développeur Pawel Raszewski
Type de Paiement free
Langues Prises en Charge 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"
    }
}