Safer Redirects

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

¿Qué es Safer Redirects?

Safer Redirects es una extensión de Chrome desarrollada por Michael Brodmann, y su función principal es "This extension displays the url to which the redirect would have occured. Choice wisely if you want to proceed.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Safer Redirects

Descarga archivos de extensión Safer Redirects en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Safer Redirects Safer Redirects
ID ecejaaoknpcjfheoejampbickooodnna
URL Oficial https://chromewebstore.google.com/detail/safer-redirects/ecejaaoknpcjfheoejampbickooodnna
Descripción This extension displays the url to which the redirect would have occured. Choice wisely if you want to proceed.
Tamaño del Archivo 9.92 KB
Cantidad de Instalaciones 150
Versión Actual 1.0
Última Actualización 2016-07-04
Fecha de Publicación 2016-07-04
Calificación 3.43/5 Total de 7 Calificaciones
Desarrollador Michael Brodmann
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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"
        ]
    }
}