Certificate Info
Shows TLS certificate info and validation level of the servers you connect.
Certificate Infoคืออะไร?
Certificate Info เป็นส่วนขยายของ Chrome ที่พัฒนาโดย blupig.net และคุณลักษณะหลักของมันคือ "Shows TLS certificate info and validation level of the servers you connect."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Certificate Info
ดาวน์โหลดไฟล์ส่วนขยาย Certificate Info ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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 |
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\/" ] } |