SafeLink

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

O que é SafeLink?

SafeLink é uma extensão do Chrome desenvolvida por James Jin, e sua principal característica é "SafeLink is an extension that detects and highlights potentially malicious links on a webpage. The detected links are rated on a…".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão SafeLink

Baixe arquivos de extensão SafeLink no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome SafeLink SafeLink
ID afjdebafmhbnkhihbopohflecbilnbdj
URL Oficial https://chromewebstore.google.com/detail/safelink/afjdebafmhbnkhihbopohflecbilnbdj
Descrição SafeLink is an extension that detects and highlights potentially malicious links on a webpage. The detected links are rated on a…
Tamanho do Arquivo 3.72 MB
Contagem de Instalações 40
Versão Atual 2.0
Última Atualização 2021-02-17
Data de Publicação 2021-02-17
Classificação 4.33/5 Total de 3 Avaliações
Desenvolvedor James Jin
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://jfjin.github.io/SafeLinkWebsite/
URL da Página de Política de Privacidade http://safelinkapp.com/privacy.html
Idiomas Suportados 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\/"
    ]
}