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."입니다.
확장 프로그램 스크린샷
Sugar Now 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 |
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" } } |