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"입니다.
확장 프로그램 스크린샷
SSL Grade 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
# 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 |
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\/" ] } |