SSL Grade
This Extension Uses the SSLLabs SSL Test to Show a Security Rating of the SSL connection You Are Using
SSL Grade là gì?
SSL Grade là một tiện ích mở rộng Chrome được phát triển bởi wolff0815, và tính năng chính của nó là "This Extension Uses the SSLLabs SSL Test to Show a Security Rating of the SSL connection You Are Using".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng SSL Grade
Tải xuống các tệp mở rộng SSL Grade dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
# 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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | SSL Grade |
ID | mnebjincbemnakfbiefcipmbjijgaimp |
URL Chính Thức | https://chromewebstore.google.com/detail/ssl-grade/mnebjincbemnakfbiefcipmbjijgaimp |
Mô tả | This Extension Uses the SSLLabs SSL Test to Show a Security Rating of the SSL connection You Are Using |
Kích Thước Tệp | 56.41 KB |
Số Lần Cài Đặt | 1,501 |
Phiên Bản Hiện Tại | 1.1.1 |
Cập Nhật Lần Cuối | 2019-10-22 |
Ngày Phát Hành | 2019-10-21 |
Đánh Giá | 3.86/5 Tổng số 14 Đánh Giá |
Nhà Phát Triển | wolff0815 |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/wolffc/sslgrade-chrome |
URL Trang Trợ Giúp | https://github.com/wolffc/sslgrade-chrome/wiki |
Ngôn Ngữ Được Hỗ Trợ | 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\/" ] } |