SafeLink

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

Co to jest SafeLink?

SafeLink to rozszerzenie Chrome opracowane przez James Jin, a jego główną funkcją jest „SafeLink is an extension that detects and highlights potentially malicious links on a webpage. The detected links are rated on a…”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia SafeLink

Pobierz pliki rozszerzeń SafeLink w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa SafeLink SafeLink
ID afjdebafmhbnkhihbopohflecbilnbdj
Oficjalny URL https://chromewebstore.google.com/detail/safelink/afjdebafmhbnkhihbopohflecbilnbdj
Opis SafeLink is an extension that detects and highlights potentially malicious links on a webpage. The detected links are rated on a…
Rozmiar pliku 3.72 MB
Liczba instalacji 40
Aktualna Wersja 2.0
Ostatnia Aktualizacja 2021-02-17
Data Publikacji 2021-02-17
Ocena 4.33/5 Łącznie 3 Oceny
Deweloper James Jin
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://jfjin.github.io/SafeLinkWebsite/
Adres URL Strony Polityki Prywatności http://safelinkapp.com/privacy.html
Obsługiwane Języki 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\/"
    ]
}