Safer Redirects

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

Qu'est-ce que Safer Redirects ?

Safer Redirects est une extension Chrome développée par Michael Brodmann, et sa fonction principale est "This extension displays the url to which the redirect would have occured. Choice wisely if you want to proceed.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Safer Redirects

Téléchargez les fichiers d'extension Safer Redirects au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Safer Redirects Safer Redirects
ID ecejaaoknpcjfheoejampbickooodnna
URL Officiel https://chromewebstore.google.com/detail/safer-redirects/ecejaaoknpcjfheoejampbickooodnna
Description This extension displays the url to which the redirect would have occured. Choice wisely if you want to proceed.
Taille du Fichier 9.92 KB
Nombre d'Installations 150
Version Actuelle 1.0
Dernière Mise à Jour 2016-07-04
Date de Publication 2016-07-04
Évaluation 3.43/5 Total 7 Évaluations
Développeur Michael Brodmann
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
        ]
    }
}