Safer Redirects

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

Vad är Safer Redirects?

Safer Redirects är en Chrome-tillägg utvecklad av Michael Brodmann, och dess huvudfunktion är "This extension displays the url to which the redirect would have occured. Choice wisely if you want to proceed.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Safer Redirects-förlängningens CRX-fil

Ladda ner Safer Redirects-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Safer Redirects Safer Redirects
ID ecejaaoknpcjfheoejampbickooodnna
Officiell webbadress https://chromewebstore.google.com/detail/safer-redirects/ecejaaoknpcjfheoejampbickooodnna
Beskrivning This extension displays the url to which the redirect would have occured. Choice wisely if you want to proceed.
Filstorlek 9.92 KB
Antal Installationer 150
Aktuell Version 1.0
Senast Uppdaterad 2016-07-04
Publiceringsdatum 2016-07-04
Betyg 3.43/5 Totalt 7 Betyg
Utvecklare Michael Brodmann
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
        ]
    }
}