Sentinel

Protects users from phishing websites

什么是Sentinel?

Sentinel是由Sentinel开发的Chrome扩展程序,该扩展的主要功能是“Protects users from phishing websites”。

扩展截图

screenshot

下载Sentinel扩展crx文件

下载Sentinel扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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

扩展基本信息

名称 Sentinel Sentinel
ID lllckganoebphnkinkaaemidegnkdaie
官方URL https://chromewebstore.google.com/detail/sentinel/lllckganoebphnkinkaaemidegnkdaie
简介 Protects users from phishing websites
文件大小 42.56 KB
安装次数 6,000
当前版本 1.1
更新时间 2021-12-10
上架时间 2021-12-10
开发者 Sentinel
电子邮箱 [email protected]
付费类型 free
隐私政策页面URL https://sentinel.wtf/privacy
支持的语言 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"
    }
}