Safer Redirects

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

Co je Safer Redirects?

Safer Redirects je rozšíření Chrome vyvinuté Michael Brodmann, a jeho hlavní funkcí je „This extension displays the url to which the redirect would have occured. Choice wisely if you want to proceed.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Safer Redirects

Stáhněte si soubory rozšíření Safer Redirects ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Safer Redirects Safer Redirects
ID ecejaaoknpcjfheoejampbickooodnna
Oficiální URL https://chromewebstore.google.com/detail/safer-redirects/ecejaaoknpcjfheoejampbickooodnna
Popis This extension displays the url to which the redirect would have occured. Choice wisely if you want to proceed.
Velikost souboru 9.92 KB
Počet instalací 150
Aktuální Verze 1.0
Poslední Aktualizace 2016-07-04
Datum Vydání 2016-07-04
Hodnocení 3.43/5 Celkem 7 Hodnocení
Vývojář Michael Brodmann
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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"
        ]
    }
}