SSL Test
This extension will test the SSL status of the current page using ssllabs.com
Что такое SSL Test?
SSL Test - это расширение Chrome, разработанное JoshMike, и его основная функция - "This extension will test the SSL status of the current page using ssllabs.com".
Снимки экрана расширения
Скачать файл CRX расширения SSL Test
Скачайте файлы расширений SSL Test в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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.
Основная информация о расширении
Название | |
ID | flkjihijgfnfmpmfeffcnamifckdmmil |
Официальный URL | https://chrome.google.com/webstore/detail/ssl-test/flkjihijgfnfmpmfeffcnamifckdmmil |
Описание | This extension will test the SSL status of the current page using ssllabs.com |
Размер файла | 16.97 KB |
Количество установок | 227 |
Текущая Версия | 0.1 |
Последнее Обновление | 2019-04-20 |
Дата публикации | 2019-04-20 |
Рейтинг | 4.00/5 Всего 2 оценок |
Разработчик | JoshMike |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | 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" ] } |