SSL Grade

This Extension Uses the SSLLabs SSL Test to Show a Security Rating of the SSL connection You Are Using

O que é SSL Grade?

SSL Grade é uma extensão do Chrome desenvolvida por wolff0815, e sua principal característica é "This Extension Uses the SSLLabs SSL Test to Show a Security Rating of the SSL connection You Are Using".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão SSL Grade

Baixe arquivos de extensão SSL Grade 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

                        # SSL Grade (Chrome Extension)

## About
This Extension shows the Quality of the SSL Conection of the Current website.
this extension downloads the Quality Rating  from SSLLabs.com. and displays an 
icon matching the rating in the adress bar. this makes it easyly to discover SSL problems on the sites your visiting.

## Privacy
This extension itself does not Collect Any Data. But it is querying an third party Service:
`https://api.ssllabs.com/api/v2/analyze?host=`
therefor it is possible that ssllabs.com is learning which Domains you are visiting.

## new in version 1.1.1
this is a bugfix release, it fixes a bug where http urls did not resulted in an sslscan when clicking the "No" icon. this is fixed by correctly initiating the scan.

## TODOs:
 * Handling of Domains Where no Result is in Cache.
 * configurtation Options: 
   * Do Not query Automatically
   * Clear Result Cache 
   * Cache Results for  Hours
 * Better Icons?


## Sourcecode
the Project page of this extension could be found at github: https://github.com/wolffc/sslgrade-chrome

## Feedback
any feedback is very welcome                    

Informações Básicas da Extensão

Nome SSL Grade SSL Grade
ID mnebjincbemnakfbiefcipmbjijgaimp
URL Oficial https://chromewebstore.google.com/detail/ssl-grade/mnebjincbemnakfbiefcipmbjijgaimp
Descrição This Extension Uses the SSLLabs SSL Test to Show a Security Rating of the SSL connection You Are Using
Tamanho do Arquivo 56.41 KB
Contagem de Instalações 1,501
Versão Atual 1.1.1
Última Atualização 2019-10-22
Data de Publicação 2019-10-21
Classificação 3.86/5 Total de 14 Avaliações
Desenvolvedor wolff0815
Tipo de Pagamento free
Site da Extensão https://github.com/wolffc/sslgrade-chrome
URL da Página de Ajuda https://github.com/wolffc/sslgrade-chrome/wiki
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "SSL Grade",
    "description": "This Extension Uses the SSLLabs SSL Test to Show a Security Rating of the SSL connection You Are Using",
    "version": "1.1.1",
    "page_action": {
        "default_icon": "icons\/no.png",
        "default_title": "SSL Grade"
    },
    "background": {
        "scripts": [
            "jquery.js",
            "main.js"
        ]
    },
    "permissions": [
        "activeTab",
        "tabs",
        "https:\/\/ajax.googleapis.com\/",
        "https:\/\/api.ssllabs.com\/"
    ]
}