Sentinel

Protects users from phishing websites

Apa itu Sentinel?

Sentinel adalah ekstensi Chrome yang dikembangkan oleh Sentinel, dan fitur utamanya adalah "Protects users from phishing websites".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Sentinel

Unduh file ekstensi Sentinel dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama Sentinel Sentinel
ID lllckganoebphnkinkaaemidegnkdaie
URL Resmi https://chromewebstore.google.com/detail/sentinel/lllckganoebphnkinkaaemidegnkdaie
Deskripsi Protects users from phishing websites
Ukuran File 42.56 KB
Jumlah Instalasi 6,000
Versi Saat Ini 1.1
Terakhir Diperbarui 2021-12-10
Tanggal Publikasi 2021-12-10
Pengembang Sentinel
Email [email protected]
Tipe Pembayaran free
URL Halaman Kebijakan Privasi https://sentinel.wtf/privacy
Bahasa yang Didukung 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"
    }
}