SafeLink

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

Qu'est-ce que SafeLink ?

SafeLink est une extension Chrome développée par James Jin, et sa fonction principale est "SafeLink is an extension that detects and highlights potentially malicious links on a webpage. The detected links are rated on a…".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension SafeLink

Téléchargez les fichiers d'extension SafeLink au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom SafeLink SafeLink
ID afjdebafmhbnkhihbopohflecbilnbdj
URL Officiel https://chromewebstore.google.com/detail/safelink/afjdebafmhbnkhihbopohflecbilnbdj
Description SafeLink is an extension that detects and highlights potentially malicious links on a webpage. The detected links are rated on a…
Taille du Fichier 3.72 MB
Nombre d'Installations 40
Version Actuelle 2.0
Dernière Mise à Jour 2021-02-17
Date de Publication 2021-02-17
Évaluation 4.33/5 Total 3 Évaluations
Développeur James Jin
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://jfjin.github.io/SafeLinkWebsite/
URL de la Page de Politique de Confidentialité http://safelinkapp.com/privacy.html
Langues Prises en Charge 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\/"
    ]
}