Sugar Now
Displays current blood glucose from Sugarmate and displays on extension icon.
Sugar Now là gì?
Sugar Now là một tiện ích mở rộng Chrome được phát triển bởi seshadri.xyz, và tính năng chính của nó là "Displays current blood glucose from Sugarmate and displays on extension icon.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Sugar Now
Tải xuống các tệp mở rộng Sugar Now dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Sugar Now |
ID | ejgpijokicnoeaplalkkdociccaooegd |
URL Chính Thức | https://chromewebstore.google.com/detail/sugar-now/ejgpijokicnoeaplalkkdociccaooegd |
Mô tả | Displays current blood glucose from Sugarmate and displays on extension icon. |
Kích Thước Tệp | 897 KB |
Số Lần Cài Đặt | 190 |
Phiên Bản Hiện Tại | 1.2 |
Cập Nhật Lần Cuối | 2021-09-11 |
Ngày Phát Hành | 2019-07-01 |
Đánh Giá | 3.83/5 Tổng số 6 Đánh Giá |
Nhà Phát Triển | seshadri.xyz |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://seshadri.xyz |
URL Trang Trợ Giúp | https://seshadri.xyz/about.html |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |