SafeLink

SafeLink is an extension that detects and highlights potentially malicious links on a webpage. The detected links are rated on a…

ما هو SafeLink؟

SafeLink هو إضافة Chrome تم تطويرها بواسطة James Jin، والميزة الرئيسية لها هي "SafeLink is an extension that detects and highlights potentially malicious links on a webpage. The detected links are rated on a…".

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

screenshot

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

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

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

                        SafeLink is an extension that detects and highlights potentially malicious links on a webpage. The detected links are rated on a scale of five different factors and given a score that would determine if it is malicious or not. The non-malicious links would appear as usual while the malicious links will appear as highlighted.                    

معلومات أساسية عن التمديد

الاسم SafeLink SafeLink
ID afjdebafmhbnkhihbopohflecbilnbdj
عنوان URL الرسمي https://chromewebstore.google.com/detail/safelink/afjdebafmhbnkhihbopohflecbilnbdj
الوصف SafeLink is an extension that detects and highlights potentially malicious links on a webpage. The detected links are rated on a…
حجم الملف 3.72 MB
عدد التثبيتات 40
النسخة الحالية 2.0
آخر تحديث 2021-02-17
تاريخ النشر 2021-02-17
تقييم 4.33/5 مجموع تقييمات 3
المطور James Jin
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://jfjin.github.io/SafeLinkWebsite/
عنوان صفحة سياسة الخصوصية http://safelinkapp.com/privacy.html
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SafeLink",
    "version": "2.0",
    "manifest_version": 2,
    "icons": {
        "128": "safelink logo 2.png"
    },
    "background": {
        "scripts": [
            "background.js",
            "jquery.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery.js",
                "content.js",
                "require.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "SafeLink"
    },
    "permissions": [
        "http:\/\/127.0.0.1\/*",
        "https:\/\/ajax.googleapis.com\/",
        "https:\/\/www.coolmath.com\/",
        "https:\/\/safe-link.herokuapp.com\/"
    ]
}