SafeLink

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

Co je SafeLink?

SafeLink je rozšíření Chrome vyvinuté James Jin, a jeho hlavní funkcí je „SafeLink is an extension that detects and highlights potentially malicious links on a webpage. The detected links are rated on a…“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření SafeLink

Stáhněte si soubory rozšíření SafeLink ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název SafeLink SafeLink
ID afjdebafmhbnkhihbopohflecbilnbdj
Oficiální URL https://chromewebstore.google.com/detail/safelink/afjdebafmhbnkhihbopohflecbilnbdj
Popis SafeLink is an extension that detects and highlights potentially malicious links on a webpage. The detected links are rated on a…
Velikost souboru 3.72 MB
Počet instalací 40
Aktuální Verze 2.0
Poslední Aktualizace 2021-02-17
Datum Vydání 2021-02-17
Hodnocení 4.33/5 Celkem 3 Hodnocení
Vývojář James Jin
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://jfjin.github.io/SafeLinkWebsite/
URL Stránky Zásad Ochrany Soukromí http://safelinkapp.com/privacy.html
Podporované Jazyky 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\/"
    ]
}