Sentinel

Protects users from phishing websites

Hvad er Sentinel?

Sentinel er en Chrome-udvidelse udviklet af Sentinel, og dens hovedfunktion er "Protects users from phishing websites".

Udvidelsesskærmbilleder

screenshot

Download Sentinel-udvidelses-CRX-fil

Download Sentinel-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

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

Grundlæggende oplysninger om udvidelsen

Navn Sentinel Sentinel
ID lllckganoebphnkinkaaemidegnkdaie
Officiel URL https://chromewebstore.google.com/detail/sentinel/lllckganoebphnkinkaaemidegnkdaie
Beskrivelse Protects users from phishing websites
Filstørrelse 42.56 KB
Antal Installationer 6,000
Nuværende Version 1.1
Senest Opdateret 2021-12-10
Udgivelsesdato 2021-12-10
Udvikler Sentinel
E-mail [email protected]
Betalingsmetode free
URL til Fortrolighedspolitik Side https://sentinel.wtf/privacy
Understøttede Sprog 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"
    }
}