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
官方網址 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"
    }
}