Sentinel

Protects users from phishing websites

Qu'est-ce que Sentinel ?

Sentinel est une extension Chrome développée par Sentinel, et sa fonction principale est "Protects users from phishing websites".

Captures d'Écran de l'Extension

screenshot

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

Téléchargez les fichiers d'extension Sentinel 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

                        Sentinel is a browser extension built to block scam & phishing websites.                    

Informations de Base sur l'Extension

Nom Sentinel Sentinel
ID lllckganoebphnkinkaaemidegnkdaie
URL Officiel https://chromewebstore.google.com/detail/sentinel/lllckganoebphnkinkaaemidegnkdaie
Description Protects users from phishing websites
Taille du Fichier 42.56 KB
Nombre d'Installations 6,000
Version Actuelle 1.1
Dernière Mise à Jour 2021-12-10
Date de Publication 2021-12-10
Développeur Sentinel
Email [email protected]
Type de Paiement free
URL de la Page de Politique de Confidentialité https://sentinel.wtf/privacy
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Sentinel",
    "version": "1.1",
    "description": "Protects users from phishing websites",
    "author": "Sentinel Team",
    "background": {
        "scripts": [
            ".\/src\/background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                ".\/src\/content.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                ""
            ],
            "js": [
                ".\/src\/afterpage.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "blocked.html"
    ],
    "browser_action": {
        "default_icon": {
            "16": "icons\/16.png",
            "19": "icons\/19.png",
            "32": "icons\/32.png",
            "48": "icons\/48.png",
            "128": "icons\/128.png"
        },
        "default_title": "Sentinel",
        "default_popup": ".\/popup\/popup.html"
    },
    "icons": {
        "16": ".\/icons\/16.png",
        "19": ".\/icons\/19.png",
        "32": ".\/icons\/32.png",
        "48": ".\/icons\/48.png",
        "128": ".\/icons\/128.png"
    }
}