PingER
Pinger is a simple but elegant chrome extension to monitor the status of a remote server, website or a remote DB.
Что такое PingER?
PingER - это расширение Chrome, разработанное Kishore Ithadi, и его основная функция - "Pinger is a simple but elegant chrome extension to monitor the status of a remote server, website or a remote DB.".
Снимки экрана расширения
Скачать файл CRX расширения PingER
Скачайте файлы расширений PingER в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Pinger will run in the background when the browser is closed. This extension will send an email and chrome desktop notification once your entities state is changed. You can also customize the interval of status check.
Основная информация о расширении
Название | |
ID | jcoegkmjenfpgmkoeomahaioddaajfdk |
Официальный URL | https://chrome.google.com/webstore/detail/pinger/jcoegkmjenfpgmkoeomahaioddaajfdk |
Описание | Pinger is a simple but elegant chrome extension to monitor the status of a remote server, website or a remote DB. |
Размер файла | 207 KB |
Количество установок | 84 |
Текущая Версия | 0.0.0.3 |
Последнее Обновление | 2019-11-19 |
Дата публикации | 2019-11-15 |
Рейтинг | 5.00/5 Всего 4 оценок |
Разработчик | Kishore Ithadi |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/KishoreIthadi/Pinger |
URL страницы помощи | https://github.com/KishoreIthadi/Pinger/issues |
URL страницы политики конфиденциальности | https://github.com/KishoreIthadi/Pinger/blob/master/LICENSE |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "PingER", "short_name": "PingER", "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "description": "Pinger is a simple but elegant chrome extension to monitor the status of a remote server, website or a remote DB.", "version": "0.0.0.3", "icons": { "16": "images\/pingerX16.png", "32": "images\/pingerX32.png", "48": "images\/pingerX48.png", "128": "images\/pingerX128.png" }, "browser_action": { "default_icon": "images\/pingerX32.png", "default_popup": "pinger.html" }, "background": { "scripts": [ "scripts\/vendorjs.min.js", "scripts\/common.min.js", "scripts\/background.min.js" ] }, "permissions": [ "background", "notifications", "storage", "http:\/\/*\/*", "https:\/\/*\/*" ] } |