Sugar Now

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

O que é Sugar Now?

Sugar Now é uma extensão do Chrome desenvolvida por seshadri.xyz, e sua principal característica é "Displays current blood glucose from Sugarmate and displays on extension icon.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Sugar Now

Baixe arquivos de extensão Sugar Now no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Sugar Now Sugar Now
ID ejgpijokicnoeaplalkkdociccaooegd
URL Oficial https://chromewebstore.google.com/detail/sugar-now/ejgpijokicnoeaplalkkdociccaooegd
Descrição Displays current blood glucose from Sugarmate and displays on extension icon.
Tamanho do Arquivo 897 KB
Contagem de Instalações 190
Versão Atual 1.2
Última Atualização 2021-09-11
Data de Publicação 2019-07-01
Classificação 3.83/5 Total de 6 Avaliações
Desenvolvedor seshadri.xyz
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://seshadri.xyz
URL da Página de Ajuda https://seshadri.xyz/about.html
Idiomas Suportados 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"
    }
}