Sugar Now

Displays current blood glucose from Sugarmate and displays on extension icon.

Vad är Sugar Now?

Sugar Now är en Chrome-tillägg utvecklad av seshadri.xyz, och dess huvudfunktion är "Displays current blood glucose from Sugarmate and displays on extension icon.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Sugar Now-förlängningens CRX-fil

Ladda ner Sugar Now-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Sugar Now Sugar Now
ID ejgpijokicnoeaplalkkdociccaooegd
Officiell webbadress https://chromewebstore.google.com/detail/sugar-now/ejgpijokicnoeaplalkkdociccaooegd
Beskrivning Displays current blood glucose from Sugarmate and displays on extension icon.
Filstorlek 897 KB
Antal Installationer 190
Aktuell Version 1.2
Senast Uppdaterad 2021-09-11
Publiceringsdatum 2019-07-01
Betyg 3.83/5 Totalt 6 Betyg
Utvecklare seshadri.xyz
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://seshadri.xyz
Hjälpsida URL https://seshadri.xyz/about.html
Stödda Språk 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"
    }
}