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