Safer Redirects

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

O que é Safer Redirects?

Safer Redirects é uma extensão do Chrome desenvolvida por Michael Brodmann, e sua principal característica é "This extension displays the url to which the redirect would have occured. Choice wisely if you want to proceed.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Safer Redirects

Baixe arquivos de extensão Safer Redirects no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Safer Redirects Safer Redirects
ID ecejaaoknpcjfheoejampbickooodnna
URL Oficial https://chromewebstore.google.com/detail/safer-redirects/ecejaaoknpcjfheoejampbickooodnna
Descrição This extension displays the url to which the redirect would have occured. Choice wisely if you want to proceed.
Tamanho do Arquivo 9.92 KB
Contagem de Instalações 150
Versão Atual 1.0
Última Atualização 2016-07-04
Data de Publicação 2016-07-04
Classificação 3.43/5 Total de 7 Avaliações
Desenvolvedor Michael Brodmann
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
        ]
    }
}