Safer Redirects

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

Hvad er Safer Redirects?

Safer Redirects er en Chrome-udvidelse udviklet af Michael Brodmann, og dens hovedfunktion er "This extension displays the url to which the redirect would have occured. Choice wisely if you want to proceed.".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot

Download Safer Redirects-udvidelses-CRX-fil

Download Safer Redirects-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Safer Redirects Safer Redirects
ID ecejaaoknpcjfheoejampbickooodnna
Officiel URL https://chromewebstore.google.com/detail/safer-redirects/ecejaaoknpcjfheoejampbickooodnna
Beskrivelse This extension displays the url to which the redirect would have occured. Choice wisely if you want to proceed.
Filstørrelse 9.92 KB
Antal Installationer 150
Nuværende Version 1.0
Senest Opdateret 2016-07-04
Udgivelsesdato 2016-07-04
Bedømmelse 3.43/5 Samlet 7 Bedømmelser
Udvikler Michael Brodmann
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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"
        ]
    }
}