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
官方網址 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
}