Safer Redirects

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

Was ist Safer Redirects?

Safer Redirects ist eine Chrome-Erweiterung, die von Michael Brodmann entwickelt wurde, und ihr Hauptmerkmal ist "This extension displays the url to which the redirect would have occured. Choice wisely if you want to proceed.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Safer Redirects-Erweiterungs-CRX-Datei herunterladen

Laden Sie Safer Redirects-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Safer Redirects Safer Redirects
ID ecejaaoknpcjfheoejampbickooodnna
Offizielle URL https://chromewebstore.google.com/detail/safer-redirects/ecejaaoknpcjfheoejampbickooodnna
Beschreibung This extension displays the url to which the redirect would have occured. Choice wisely if you want to proceed.
Dateigröße 9.92 KB
Installationsanzahl 150
Aktuelle Version 1.0
Letztes Update 2016-07-04
Veröffentlichungsdatum 2016-07-04
Bewertung 3.43/5 Insgesamt 7 Bewertungen
Entwickler Michael Brodmann
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
        ]
    }
}