Safer Redirects

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

Что такое Safer Redirects?

Safer Redirects - это расширение Chrome, разработанное Michael Brodmann, и его основная функция - "This extension displays the url to which the redirect would have occured. Choice wisely if you want to proceed.".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения Safer Redirects

Скачайте файлы расширений Safer Redirects в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Safer Redirects Safer Redirects
ID ecejaaoknpcjfheoejampbickooodnna
Официальный URL https://chromewebstore.google.com/detail/safer-redirects/ecejaaoknpcjfheoejampbickooodnna
Описание This extension displays the url to which the redirect would have occured. Choice wisely if you want to proceed.
Размер файла 9.92 KB
Количество установок 150
Текущая Версия 1.0
Последнее Обновление 2016-07-04
Дата публикации 2016-07-04
Рейтинг 3.43/5 Всего 7 оценок
Разработчик Michael Brodmann
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки 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"
        ]
    }
}