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是由Michael Brodmann开发的Chrome扩展程序,该扩展的主要功能是“This extension displays the url to which the redirect would have occured. Choice wisely if you want to proceed.”。

扩展截图

screenshot
screenshot
screenshot

下载Safer Redirects扩展crx文件

下载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"
        ]
    }
}