SSL Grade

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

什么是SSL Grade?

SSL Grade是由wolff0815开发的Chrome扩展程序,该扩展的主要功能是“This Extension Uses the SSLLabs SSL Test to Show a Security Rating of the SSL connection You Are Using”。

扩展截图

screenshot

下载SSL Grade扩展crx文件

下载SSL Grade扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        # 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                    

扩展基本信息

名称 SSL Grade SSL Grade
ID mnebjincbemnakfbiefcipmbjijgaimp
官方URL https://chromewebstore.google.com/detail/ssl-grade/mnebjincbemnakfbiefcipmbjijgaimp
简介 This Extension Uses the SSLLabs SSL Test to Show a Security Rating of the SSL connection You Are Using
文件大小 56.41 KB
安装次数 1,501
当前版本 1.1.1
更新时间 2019-10-22
上架时间 2019-10-21
评分 3.86/5 共14次评分
开发者 wolff0815
付费类型 free
扩展官网 https://github.com/wolffc/sslgrade-chrome
帮助页面URL https://github.com/wolffc/sslgrade-chrome/wiki
支持的语言 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\/"
    ]
}