Sentinel

Protects users from phishing websites

Wat is Sentinel?

Sentinel is een Chrome-extensie ontwikkeld door Sentinel, en de belangrijkste functie is "Protects users from phishing websites".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Sentinel

Download Sentinel-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

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

Basisinformatie over de Extensie

Naam Sentinel Sentinel
ID lllckganoebphnkinkaaemidegnkdaie
Officiële URL https://chromewebstore.google.com/detail/sentinel/lllckganoebphnkinkaaemidegnkdaie
Beschrijving Protects users from phishing websites
Bestandsgrootte 42.56 KB
Aantal Installaties 6,000
Huidige Versie 1.1
Laatst Bijgewerkt 2021-12-10
Publicatiedatum 2021-12-10
Ontwikkelaar Sentinel
E-mail [email protected]
Betalingswijze free
URL van de Privacybeleid Pagina https://sentinel.wtf/privacy
Ondersteunde Talen 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"
    }
}