Sentinel

Protects users from phishing websites

ما هو Sentinel؟

Sentinel هو إضافة Chrome تم تطويرها بواسطة Sentinel، والميزة الرئيسية لها هي "Protects users from phishing websites".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Sentinel

قم بتنزيل ملفات الامتداد Sentinel بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة سياسة الخصوصية 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"
    }
}