Sugar Now

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

Sugar Now क्या है?

Sugar Now seshadri.xyz द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Displays current blood glucose from Sugarmate and displays on extension icon."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Sugar Now एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम Sugar Now Sugar Now
ID ejgpijokicnoeaplalkkdociccaooegd
आधिकारिक URL https://chromewebstore.google.com/detail/sugar-now/ejgpijokicnoeaplalkkdociccaooegd
विवरण Displays current blood glucose from Sugarmate and displays on extension icon.
फ़ाइल का आकार 897 KB
स्थापना संख्या 190
वर्तमान संस्करण 1.2
अंतिम अपडेट 2021-09-11
प्रकाशन तिथि 2019-07-01
रेटिंग 3.83/5 कुल 6 रेटिंग्स
डेवलपर seshadri.xyz
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://seshadri.xyz
सहायता पृष्ठ URL https://seshadri.xyz/about.html
समर्थित भाषाएँ 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"
    }
}