Home Assistant Quick Restart

Checks the config and restarts Home Assistant found in active browser tab with single button quick access, no configuration required

Home Assistant Quick Restartคืออะไร?

Home Assistant Quick Restart เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Warwick Ward และคุณลักษณะหลักของมันคือ "Checks the config and restarts Home Assistant found in active browser tab with single button quick access, no configuration required"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Home Assistant Quick Restart

ดาวน์โหลดไฟล์ส่วนขยาย Home Assistant Quick Restart ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This extension add a button to chrome address bar that will activate when Home Assistant is detected in the active browser tab. Once button is click, a config check will be performed and if successful will restart Home Assistant. No configuration is required to use this extension, Home Assistant is detected in the active tab and a secure connection is established to perform the actions.

Version 2.0 Updates
- Still no configuration required! and now no tab refresh is ever required either!!
- Now I'll check if current access_token is valid, if not we'll go and grab a new one
- Minor description and icon updates                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Home Assistant Quick Restart Home Assistant Quick Restart
ID eoekhnolflkjbpiafambpfemogdidlch
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/home-assistant-quick-rest/eoekhnolflkjbpiafambpfemogdidlch
คำอธิบาย Checks the config and restarts Home Assistant found in active browser tab with single button quick access, no configuration required
ขนาดไฟล์ 84.21 KB
จำนวนการติดตั้ง 813
เวอร์ชันปัจจุบัน 2.0
อัปเดตครั้งล่าสุด 2020-02-09
วันที่เผยแพร่ 2020-02-09
คะแนน 3.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Warwick Ward
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/warwickofthegh/Browser-Extension-Home-Assistant-Quick-Restart
URL หน้าช่วยเหลือ https://github.com/warwickofthegh/Browser-Extension-Home-Assistant-Quick-Restart
URL หน้านโยบายความเป็นส่วนตัว https://github.com/warwickofthegh/Browser-Extension-Home-Assistant-Quick-Restart/blob/master/privacy-policy.md
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Home Assistant Quick Restart",
    "description": "Checks the config and restarts Home Assistant found in active browser tab with single button quick access, no configuration required",
    "version": "2.0",
    "author": "Warwick Ward",
    "homepage_url": "https:\/\/github.com\/warwickofthegh\/Browser-Extension-Home-Assistant-Quick-Restart",
    "icons": {
        "16": "images\/icon_enabled-16.png",
        "24": "images\/icon_enabled-24.png",
        "32": "images\/icon_enabled-32.png",
        "48": "images\/icon_enabled-48.png",
        "128": "images\/icon_enabled-128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "page_action": {
        "default_icon": {
            "16": "images\/icon_disabled-16.png",
            "24": "images\/icon_disabled-24.png",
            "32": "images\/icon_disabled-32.png",
            "48": "images\/icon_disabled-48.png",
            "128": "images\/icon_disabled-128.png"
        },
        "default_popup": "popup.html",
        "default_title": "Home Assistant Quick Restart"
    },
    "commands": {
        "_execute_page_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+H",
                "mac": "MacCtrl+Shift+H"
            },
            "description": "Home Assistant Quick Restart"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "activeTab"
    ]
}