Safer Redirects

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

What is Safer Redirects?

Safer Redirects is a Chrome extension developed by Michael Brodmann, and its main feature is "This extension displays the url to which the redirect would have occured. Choice wisely if you want to proceed.".

Extension Screenshots

screenshot
screenshot
screenshot

Download Safer Redirects Extension CRX File

Download Safer Redirects extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Safer Redirects Safer Redirects
ID ecejaaoknpcjfheoejampbickooodnna
Official URL 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.
File Size 9.92 KB
Installation Count 150
Current Version 1.0
Last Updated 2016-07-04
Publish Date 2016-07-04
Rating 3.43/5 Total 7 Ratings
Developer Michael Brodmann
Email [email protected]
Payment Type free
Supported Languages 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"
        ]
    }
}