SafeLink

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

Wat is SafeLink?

SafeLink is een Chrome-extensie ontwikkeld door James Jin, en de belangrijkste functie is "SafeLink is an extension that detects and highlights potentially malicious links on a webpage. The detected links are rated on a…".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie SafeLink

Download SafeLink-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam SafeLink SafeLink
ID afjdebafmhbnkhihbopohflecbilnbdj
Officiële URL https://chromewebstore.google.com/detail/safelink/afjdebafmhbnkhihbopohflecbilnbdj
Beschrijving SafeLink is an extension that detects and highlights potentially malicious links on a webpage. The detected links are rated on a…
Bestandsgrootte 3.72 MB
Aantal Installaties 40
Huidige Versie 2.0
Laatst Bijgewerkt 2021-02-17
Publicatiedatum 2021-02-17
Beoordeling 4.33/5 Totaal 3 Beoordelingen
Ontwikkelaar James Jin
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://jfjin.github.io/SafeLinkWebsite/
URL van de Privacybeleid Pagina http://safelinkapp.com/privacy.html
Ondersteunde Talen 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\/"
    ]
}