SSL Test
This extension will test the SSL status of the current page using ssllabs.com
Was ist SSL Test?
SSL Test ist eine Chrome-Erweiterung, die von JoshMike entwickelt wurde, und ihr Hauptmerkmal ist "This extension will test the SSL status of the current page using ssllabs.com".
Erweiterungsscreenshots
SSL Test-Erweiterungs-CRX-Datei herunterladen
Laden Sie SSL Test-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
If you've ever wanted a button that sends the current page you are on to ssllabs.com to test the ssl rating, here you go!
This developer/extension is not affiliated with ssllabs in any way. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | flkjihijgfnfmpmfeffcnamifckdmmil |
| Offizielle URL | https://chrome.google.com/webstore/detail/ssl-test/flkjihijgfnfmpmfeffcnamifckdmmil |
| Beschreibung | This extension will test the SSL status of the current page using ssllabs.com |
| Dateigröße | 16.97 KB |
| Installationsanzahl | 227 |
| Aktuelle Version | 0.1 |
| Letztes Update | 2019-04-20 |
| Veröffentlichungsdatum | 2019-04-20 |
| Bewertung | 4.00/5 Insgesamt 2 Bewertungen |
| Entwickler | JoshMike |
| [email protected] | |
| Zahlungsart | free |
| Unterstützte Sprachen | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "SSL Test",
"version": "0.1",
"description": "This extension will test the SSL status of the current page using ssllabs.com",
"icons": {
"16": "images\/icon16.png",
"24": "images\/icon24.png",
"32": "images\/icon32.png",
"48": "images\/icon48.png",
"64": "images\/icon64.png",
"128": "images\/icon128.png"
},
"author": "JoshMike",
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"browser_action": {
"default_icon": {
"16": "images\/icon16.png",
"24": "images\/icon24.png",
"32": "images\/icon32.png",
"48": "images\/icon48.png",
"64": "images\/icon64.png",
"128": "images\/icon128.png"
},
"default_title": "SSL Test"
},
"permissions": [
"tabs"
]
} | |