SafeLink

SafeLink is an extension that detects and highlights potentially malicious links on a webpage. The detected links are rated on a…

什么是SafeLink?

SafeLink是由James Jin开发的Chrome扩展程序,该扩展的主要功能是“SafeLink is an extension that detects and highlights potentially malicious links on a webpage. The detected links are rated on a…”。

扩展截图

screenshot

下载SafeLink扩展crx文件

下载SafeLink扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        SafeLink is an extension that detects and highlights potentially malicious links on a webpage. The detected links are rated on a scale of five different factors and given a score that would determine if it is malicious or not. The non-malicious links would appear as usual while the malicious links will appear as highlighted.                    

扩展基本信息

名称 SafeLink SafeLink
ID afjdebafmhbnkhihbopohflecbilnbdj
官方URL https://chromewebstore.google.com/detail/safelink/afjdebafmhbnkhihbopohflecbilnbdj
简介 SafeLink is an extension that detects and highlights potentially malicious links on a webpage. The detected links are rated on a…
文件大小 3.72 MB
安装次数 40
当前版本 2.0
更新时间 2021-02-17
上架时间 2021-02-17
评分 4.33/5 共3次评分
开发者 James Jin
电子邮箱 [email protected]
付费类型 free
扩展官网 https://jfjin.github.io/SafeLinkWebsite/
隐私政策页面URL http://safelinkapp.com/privacy.html
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SafeLink",
    "version": "2.0",
    "manifest_version": 2,
    "icons": {
        "128": "safelink logo 2.png"
    },
    "background": {
        "scripts": [
            "background.js",
            "jquery.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery.js",
                "content.js",
                "require.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "SafeLink"
    },
    "permissions": [
        "http:\/\/127.0.0.1\/*",
        "https:\/\/ajax.googleapis.com\/",
        "https:\/\/www.coolmath.com\/",
        "https:\/\/safe-link.herokuapp.com\/"
    ]
}