SafeLink

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

SafeLink क्या है?

SafeLink 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 फ़ाइल डाउनलोड करें

crx प्रारूप में SafeLink एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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/
गोपनीयता नीति पृष्ठ 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\/"
    ]
}