Nightscout Chrome Extension
A Chrome extension that adds a convenient way to check blood sugar data from Nightscout in your browser.
Cos'è Nightscout Chrome Extension?
Nightscout Chrome Extension è un'estensione di Chrome sviluppata da legoandmars, e la sua funzione principale è "A Chrome extension that adds a convenient way to check blood sugar data from Nightscout in your browser.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Nightscout Chrome Extension
Scarica i file di estensione Nightscout Chrome Extension 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
Not sure what nightscout is? It's a service that lets you sync your blood sugar to the cloud - check out their website at http://www.nightscout.info/
I highly recommend setting up nightscout to any diabetic.
Have bug reports? Open an issue on the github page: https://github.com/legoandmars/nightscout-chrome Informazioni di Base sull'Estensione
| Nome | |
| ID | hncdmgomjlflmfphembffnaajhfmcjnk |
| URL Ufficiale | https://chromewebstore.google.com/detail/nightscout-chrome-extensi/hncdmgomjlflmfphembffnaajhfmcjnk |
| Descrizione | A Chrome extension that adds a convenient way to check blood sugar data from Nightscout in your browser. |
| Dimensione del File | 179 KB |
| Conteggio Installazioni | 737 |
| Versione Corrente | 2.1.1 |
| Ultimo Aggiornamento | 2021-07-10 |
| Data di Pubblicazione | 2019-07-24 |
| Valutazione | 4.25/5 Totale 24 Valutazioni |
| Sviluppatore | legoandmars |
| [email protected] | |
| Tipo di Pagamento | free |
| Lingue Supportate | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Nightscout Chrome Extension",
"version": "2.1.1",
"description": "A Chrome extension that adds a convenient way to check blood sugar data from Nightscout in your browser.",
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"permissions": [
"storage",
"https:\/\/*.herokuapp.com\/",
"notifications"
],
"optional_permissions": [
"https:\/\/*\/"
],
"background": {
"scripts": [
"background.js"
],
"persistent": true
},
"browser_action": {
"default_popup": "popup.html",
"default_icon": {
"16": "images\/nightscout16.png",
"32": "images\/nightscout32.png",
"48": "images\/nightscout48.png",
"128": "images\/nightscout128.png"
}
},
"icons": {
"16": "images\/nightscout16.png",
"32": "images\/nightscout32.png",
"48": "images\/nightscout48.png",
"128": "images\/nightscout128.png"
},
"manifest_version": 2
} | |