Sugar Now

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

什麼是Sugar Now?

Sugar Now是由seshadri.xyz開發的Chrome擴展程式,該擴展的主要功能是“Displays current blood glucose from Sugarmate and displays on extension icon.”。

擴展截圖

screenshot
screenshot

下載Sugar Now擴展crx文件

下載Sugar Now擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    }
}