Sugar Now

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

Cos'è Sugar Now?

Sugar Now è un'estensione di Chrome sviluppata da seshadri.xyz, e la sua funzione principale è "Displays current blood glucose from Sugarmate and displays on extension icon.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Sugar Now

Scarica i file di estensione Sugar Now 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

                        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.                    

Informazioni di Base sull'Estensione

Nome Sugar Now Sugar Now
ID ejgpijokicnoeaplalkkdociccaooegd
URL Ufficiale https://chromewebstore.google.com/detail/sugar-now/ejgpijokicnoeaplalkkdociccaooegd
Descrizione Displays current blood glucose from Sugarmate and displays on extension icon.
Dimensione del File 897 KB
Conteggio Installazioni 190
Versione Corrente 1.2
Ultimo Aggiornamento 2021-09-11
Data di Pubblicazione 2019-07-01
Valutazione 3.83/5 Totale 6 Valutazioni
Sviluppatore seshadri.xyz
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://seshadri.xyz
URL della Pagina di Aiuto https://seshadri.xyz/about.html
Lingue Supportate 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"
    }
}