Nightscout Chrome Extension
A Chrome extension that adds a convenient way to check blood sugar data from Nightscout in your browser.
Qu'est-ce que Nightscout Chrome Extension ?
Nightscout Chrome Extension est une extension Chrome développée par legoandmars, et sa fonction principale est "A Chrome extension that adds a convenient way to check blood sugar data from Nightscout in your browser.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Nightscout Chrome Extension
Téléchargez les fichiers d'extension Nightscout Chrome Extension au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Nightscout Chrome Extension |
ID | hncdmgomjlflmfphembffnaajhfmcjnk |
URL Officiel | https://chromewebstore.google.com/detail/nightscout-chrome-extensi/hncdmgomjlflmfphembffnaajhfmcjnk |
Description | A Chrome extension that adds a convenient way to check blood sugar data from Nightscout in your browser. |
Taille du Fichier | 179 KB |
Nombre d'Installations | 737 |
Version Actuelle | 2.1.1 |
Dernière Mise à Jour | 2021-07-10 |
Date de Publication | 2019-07-24 |
Évaluation | 4.25/5 Total 24 Évaluations |
Développeur | legoandmars |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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 } |