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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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/
URL หน้านโยบายความเป็นส่วนตัว 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\/"
    ]
}