Sentinel

Protects users from phishing websites

Vad är Sentinel?

Sentinel är en Chrome-tillägg utvecklad av Sentinel, och dess huvudfunktion är "Protects users from phishing websites".

Tilläggsskärmbilder

screenshot

Ladda ner Sentinel-förlängningens CRX-fil

Ladda ner Sentinel-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn Sentinel Sentinel
ID lllckganoebphnkinkaaemidegnkdaie
Officiell webbadress https://chromewebstore.google.com/detail/sentinel/lllckganoebphnkinkaaemidegnkdaie
Beskrivning Protects users from phishing websites
Filstorlek 42.56 KB
Antal Installationer 6,000
Aktuell Version 1.1
Senast Uppdaterad 2021-12-10
Publiceringsdatum 2021-12-10
Utvecklare Sentinel
E-post [email protected]
Betalningssätt free
URL till Sekretesspolicy Sidan https://sentinel.wtf/privacy
Stödda Språk 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"
    }
}