Sugar Now
Displays current blood glucose from Sugarmate and displays on extension icon.
Qu'est-ce que Sugar Now ?
Sugar Now est une extension Chrome développée par seshadri.xyz, et sa fonction principale est "Displays current blood glucose from Sugarmate and displays on extension icon.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Sugar Now
Téléchargez les fichiers d'extension Sugar Now 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
Fetches your current blood glucose from Sugarmate 'External JSON' periodically and displays it with the trend on the extension-icon as a persistent badge. Your blood glucose is always visible on your browser as you go about your work. The color changes subtly to indicate rising or falling glucose. Clicking the icon shows recorded time for the last known glucose value. NOTE: You need to have the Sugarmate app (https://sugarmate.io) installed to use this extension. Sources for the glucose data can come from a CGM monitor like the Dexcom G6 or fingerprick data that was manually recorded. NOTE: Make sure to pin the app so it is visible in the browser bar. NOTE: This extension is not affiliated with Sugarmate.
Informations de Base sur l'Extension
Nom | Sugar Now |
ID | ejgpijokicnoeaplalkkdociccaooegd |
URL Officiel | https://chromewebstore.google.com/detail/sugar-now/ejgpijokicnoeaplalkkdociccaooegd |
Description | Displays current blood glucose from Sugarmate and displays on extension icon. |
Taille du Fichier | 897 KB |
Nombre d'Installations | 190 |
Version Actuelle | 1.2 |
Dernière Mise à Jour | 2021-09-11 |
Date de Publication | 2019-07-01 |
Évaluation | 3.83/5 Total 6 Évaluations |
Développeur | seshadri.xyz |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://seshadri.xyz |
URL de la Page d'Aide | https://seshadri.xyz/about.html |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Sugar Now", "description": "Displays current blood glucose from Sugarmate and displays on extension icon.", "version": "1.2", "manifest_version": 2, "permissions": [ "alarms", "notifications", "storage", "https:\/\/sugarmate.io\/", "http:\/\/sugarmate.io\/" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_title": "Fetch current BG from Sugarmate", "default_popup": "popup.html" }, "icons": { "16": "sugar_now16.png", "32": "sugar_now32.png", "48": "sugar_now48.png", "128": "sugar_now128.png" } } |