Certificate Info

Shows TLS certificate info and validation level of the servers you connect.

Certificate Info란 무엇입니까?

Certificate Info은(는) blupig.net에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Shows TLS certificate info and validation level of the servers you connect."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Certificate Info 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Please read the description carefully before installing:

This is a simple extension that displays the validation level, expiration and more info of the SSL / TLS server certificate of the website you visit to help determine the identity of the server.

CAVEATS:

1. Due to the limitation of Chrome's extension API, the validation info is fetched and processed by our backend API, which only receives the hostname (not the full URL) you visit. Note that in TLS, hostnames are already sent in plaintext to the server because of SNI, regardless if you use this extension or not. For the same reason, the extension will only be able to display information of hosts available to connect from the public network.

2. This extension extracts certificate info and performs very basic validation, it should be used as a reference and shouldn't be relied on for certificate validation.

3. Certificate data is cached for 5 minutes.

This extension is open-source (GPLv3): https://github.com/blupig/certificate-info

Feel free to contribute or submit any feedback on GitHub.                    

확장 프로그램 기본 정보

이름 Certificate Info Certificate Info
ID jhldepncoippkjgjkmambfglddmjdmaj
공식 URL https://chromewebstore.google.com/detail/certificate-info/jhldepncoippkjgjkmambfglddmjdmaj
설명 Shows TLS certificate info and validation level of the servers you connect.
파일 크기 18.09 KB
설치 횟수 3,473
현재 버전 0.2.1
최근 업데이트 2020-04-18
출시 날짜 2020-04-17
평점 3.90/5 총 20 개의 평점
개발자 blupig.net
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/blupig/certificate-info
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Certificate Info",
    "description": "Shows TLS certificate info and validation level of the servers you connect.",
    "version": "0.2.1",
    "icons": {
        "16": "icon_16.png",
        "48": "icon_48.png",
        "128": "icon_128.png"
    },
    "browser_action": {
        "default_icon": "ic_lock.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "tabs",
        "https:\/\/*.blupig.net\/"
    ]
}