Nightscout Chrome Extension

A Chrome extension that adds a convenient way to check blood sugar data from Nightscout in your browser.

什么是Nightscout Chrome Extension?

Nightscout Chrome Extension是由legoandmars开发的Chrome扩展程序,该扩展的主要功能是“A Chrome extension that adds a convenient way to check blood sugar data from Nightscout in your browser.”。

扩展截图

screenshot
screenshot
screenshot

下载Nightscout Chrome Extension扩展crx文件

下载Nightscout Chrome Extension扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Not sure what nightscout is? It's a service that lets you sync your blood sugar to the cloud - check out their website at http://www.nightscout.info/
I highly recommend setting up nightscout to any diabetic.

Have bug reports? Open an issue on the github page: https://github.com/legoandmars/nightscout-chrome                    

扩展基本信息

名称 Nightscout Chrome Extension Nightscout Chrome Extension
ID hncdmgomjlflmfphembffnaajhfmcjnk
官方URL https://chromewebstore.google.com/detail/nightscout-chrome-extensi/hncdmgomjlflmfphembffnaajhfmcjnk
简介 A Chrome extension that adds a convenient way to check blood sugar data from Nightscout in your browser.
文件大小 179 KB
安装次数 737
当前版本 2.1.1
更新时间 2021-07-10
上架时间 2019-07-24
评分 4.25/5 共24次评分
开发者 legoandmars
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Nightscout Chrome Extension",
    "version": "2.1.1",
    "description": "A Chrome extension that adds a convenient way to check blood sugar data from Nightscout in your browser.",
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "permissions": [
        "storage",
        "https:\/\/*.herokuapp.com\/",
        "notifications"
    ],
    "optional_permissions": [
        "https:\/\/*\/"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/nightscout16.png",
            "32": "images\/nightscout32.png",
            "48": "images\/nightscout48.png",
            "128": "images\/nightscout128.png"
        }
    },
    "icons": {
        "16": "images\/nightscout16.png",
        "32": "images\/nightscout32.png",
        "48": "images\/nightscout48.png",
        "128": "images\/nightscout128.png"
    },
    "manifest_version": 2
}