Safer Redirects

This extension displays the url to which the redirect would have occured. Choice wisely if you want to proceed.

Cos'è Safer Redirects?

Safer Redirects è un'estensione di Chrome sviluppata da Michael Brodmann, e la sua funzione principale è "This extension displays the url to which the redirect would have occured. Choice wisely if you want to proceed.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Safer Redirects

Scarica i file di estensione Safer Redirects in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        This extension was created to mitigate threats like XSS or CSRF using an url shortener service. This extension will prompt you with the target url of the shortened url before the redirect occurs. You then can choice if you want to proceed or cancel the redirect.                    

Informazioni di Base sull'Estensione

Nome Safer Redirects Safer Redirects
ID ecejaaoknpcjfheoejampbickooodnna
URL Ufficiale https://chromewebstore.google.com/detail/safer-redirects/ecejaaoknpcjfheoejampbickooodnna
Descrizione This extension displays the url to which the redirect would have occured. Choice wisely if you want to proceed.
Dimensione del File 9.92 KB
Conteggio Installazioni 150
Versione Corrente 1.0
Ultimo Aggiornamento 2016-07-04
Data di Pubblicazione 2016-07-04
Valutazione 3.43/5 Totale 7 Valutazioni
Sviluppatore Michael Brodmann
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Safer Redirects",
    "description": "This extension displays the url to which the redirect would have occured. Choice wisely if you want to proceed.",
    "version": "1.0",
    "options_page": "options.html",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "storage",
        ""
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}