Sugar Now

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

Sugar Nowคืออะไร?

Sugar Now เป็นส่วนขยายของ Chrome ที่พัฒนาโดย seshadri.xyz และคุณลักษณะหลักของมันคือ "Displays current blood glucose from Sugarmate and displays on extension icon."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Sugar Now

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    }
}