SafeLink

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

Cos'è SafeLink?

SafeLink è un'estensione di Chrome sviluppata da James Jin, e la sua funzione principale è "SafeLink is an extension that detects and highlights potentially malicious links on a webpage. The detected links are rated on a…".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione SafeLink

Scarica i file di estensione SafeLink in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome SafeLink SafeLink
ID afjdebafmhbnkhihbopohflecbilnbdj
URL Ufficiale https://chromewebstore.google.com/detail/safelink/afjdebafmhbnkhihbopohflecbilnbdj
Descrizione SafeLink is an extension that detects and highlights potentially malicious links on a webpage. The detected links are rated on a…
Dimensione del File 3.72 MB
Conteggio Installazioni 40
Versione Corrente 2.0
Ultimo Aggiornamento 2021-02-17
Data di Pubblicazione 2021-02-17
Valutazione 4.33/5 Totale 3 Valutazioni
Sviluppatore James Jin
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://jfjin.github.io/SafeLinkWebsite/
URL della Pagina della Politica sulla Privacy http://safelinkapp.com/privacy.html
Lingue Supportate 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\/"
    ]
}