Sentinel

Protects users from phishing websites

Sentinelคืออะไร?

Sentinel เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Sentinel และคุณลักษณะหลักของมันคือ "Protects users from phishing websites"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Sentinel

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    }
}