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
官方網址 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\/"
    ]
}