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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย legoandmars และคุณลักษณะหลักของมันคือ "A Chrome extension that adds a convenient way to check blood sugar data from Nightscout in your browser."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Nightscout Chrome Extension

ดาวน์โหลดไฟล์ส่วนขยาย 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
}