Sugar Now
Displays current blood glucose from Sugarmate and displays on extension icon.
What is Sugar Now?
Sugar Now is a Chrome extension developed by seshadri.xyz, and its main feature is "Displays current blood glucose from Sugarmate and displays on extension icon.".
Extension Screenshots
Download Sugar Now Extension CRX File
Download Sugar Now extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Sugar Now |
ID | ejgpijokicnoeaplalkkdociccaooegd |
Official URL | https://chromewebstore.google.com/detail/sugar-now/ejgpijokicnoeaplalkkdociccaooegd |
Description | Displays current blood glucose from Sugarmate and displays on extension icon. |
File Size | 897 KB |
Installation Count | 190 |
Current Version | 1.2 |
Last Updated | 2021-09-11 |
Publish Date | 2019-07-01 |
Rating | 3.83/5 Total 6 Ratings |
Developer | seshadri.xyz |
[email protected] | |
Payment Type | free |
Extension Website | https://seshadri.xyz |
Help Page URL | https://seshadri.xyz/about.html |
Supported Languages | 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" } } |