PingER
Pinger is a simple but elegant chrome extension to monitor the status of a remote server, website or a remote DB.
Cos'è PingER?
PingER è un'estensione di Chrome sviluppata da Kishore Ithadi, e la sua funzione principale è "Pinger is a simple but elegant chrome extension to monitor the status of a remote server, website or a remote DB.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione PingER
Scarica i file di estensione PingER in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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. Informazioni di Base sull'Estensione
| Nome | |
| ID | jcoegkmjenfpgmkoeomahaioddaajfdk |
| URL Ufficiale | https://chrome.google.com/webstore/detail/pinger/jcoegkmjenfpgmkoeomahaioddaajfdk |
| Descrizione | Pinger is a simple but elegant chrome extension to monitor the status of a remote server, website or a remote DB. |
| Dimensione del File | 207 KB |
| Conteggio Installazioni | 84 |
| Versione Corrente | 0.0.0.3 |
| Ultimo Aggiornamento | 2019-11-19 |
| Data di Pubblicazione | 2019-11-15 |
| Valutazione | 5.00/5 Totale 4 Valutazioni |
| Sviluppatore | Kishore Ithadi |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/KishoreIthadi/Pinger |
| URL della Pagina di Aiuto | https://github.com/KishoreIthadi/Pinger/issues |
| URL della Pagina della Politica sulla Privacy | https://github.com/KishoreIthadi/Pinger/blob/master/LICENSE |
| Lingue Supportate | 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:\/\/*\/*"
]
} | |