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