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\/"
    ]
}