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
Eメール [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\/"
    ]
}