Sentinel

Protects users from phishing websites

Sentinel là gì?

Sentinel là một tiện ích mở rộng Chrome được phát triển bởi Sentinel, và tính năng chính của nó là "Protects users from phishing websites".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Sentinel

Tải xuống các tệp mở rộng Sentinel dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Sentinel Sentinel
ID lllckganoebphnkinkaaemidegnkdaie
URL Chính Thức https://chromewebstore.google.com/detail/sentinel/lllckganoebphnkinkaaemidegnkdaie
Mô tả Protects users from phishing websites
Kích Thước Tệp 42.56 KB
Số Lần Cài Đặt 6,000
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2021-12-10
Ngày Phát Hành 2021-12-10
Nhà Phát Triển Sentinel
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật https://sentinel.wtf/privacy
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}