Safer Redirects

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

Co to jest Safer Redirects?

Safer Redirects to rozszerzenie Chrome opracowane przez Michael Brodmann, a jego główną funkcją jest „This extension displays the url to which the redirect would have occured. Choice wisely if you want to proceed.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Safer Redirects

Pobierz pliki rozszerzeń Safer Redirects w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Safer Redirects Safer Redirects
ID ecejaaoknpcjfheoejampbickooodnna
Oficjalny URL https://chromewebstore.google.com/detail/safer-redirects/ecejaaoknpcjfheoejampbickooodnna
Opis This extension displays the url to which the redirect would have occured. Choice wisely if you want to proceed.
Rozmiar pliku 9.92 KB
Liczba instalacji 150
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2016-07-04
Data Publikacji 2016-07-04
Ocena 3.43/5 Łącznie 7 Oceny
Deweloper Michael Brodmann
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
        ]
    }
}