SSL Test
This extension will test the SSL status of the current page using ssllabs.com
Vad är SSL Test?
SSL Test är en Chrome-tillägg utvecklad av JoshMike, och dess huvudfunktion är "This extension will test the SSL status of the current page using ssllabs.com".
Tilläggsskärmbilder
Ladda ner SSL Test-förlängningens CRX-fil
Ladda ner SSL Test-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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. Grundläggande Information om Tillägg
| Namn | |
| ID | flkjihijgfnfmpmfeffcnamifckdmmil |
| Officiell webbadress | https://chrome.google.com/webstore/detail/ssl-test/flkjihijgfnfmpmfeffcnamifckdmmil |
| Beskrivning | This extension will test the SSL status of the current page using ssllabs.com |
| Filstorlek | 16.97 KB |
| Antal Installationer | 227 |
| Aktuell Version | 0.1 |
| Senast Uppdaterad | 2019-04-20 |
| Publiceringsdatum | 2019-04-20 |
| Betyg | 4.00/5 Totalt 2 Betyg |
| Utvecklare | JoshMike |
| E-post | [email protected] |
| Betalningssätt | free |
| Stödda Språk | 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"
]
} | |