Sentinel

Protects users from phishing websites

What is Sentinel?

Sentinel is a Chrome extension developed by Sentinel, and its main feature is "Protects users from phishing websites".

Extension Screenshots

screenshot

Download Sentinel Extension CRX File

Download Sentinel extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Sentinel Sentinel
ID lllckganoebphnkinkaaemidegnkdaie
Official URL https://chromewebstore.google.com/detail/sentinel/lllckganoebphnkinkaaemidegnkdaie
Description Protects users from phishing websites
File Size 42.56 KB
Installation Count 6,000
Current Version 1.1
Last Updated 2021-12-10
Publish Date 2021-12-10
Developer Sentinel
Email [email protected]
Payment Type free
Privacy Policy Page URL https://sentinel.wtf/privacy
Supported Languages 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"
    }
}