Sentinel

Protects users from phishing websites

Cos'è Sentinel?

Sentinel è un'estensione di Chrome sviluppata da Sentinel, e la sua funzione principale è "Protects users from phishing websites".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Sentinel

Scarica i file di estensione Sentinel 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

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

Informazioni di Base sull'Estensione

Nome Sentinel Sentinel
ID lllckganoebphnkinkaaemidegnkdaie
URL Ufficiale https://chromewebstore.google.com/detail/sentinel/lllckganoebphnkinkaaemidegnkdaie
Descrizione Protects users from phishing websites
Dimensione del File 42.56 KB
Conteggio Installazioni 6,000
Versione Corrente 1.1
Ultimo Aggiornamento 2021-12-10
Data di Pubblicazione 2021-12-10
Sviluppatore Sentinel
Email [email protected]
Tipo di Pagamento free
URL della Pagina della Politica sulla Privacy https://sentinel.wtf/privacy
Lingue Supportate 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"
    }
}