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是由Warwick Ward開發的Chrome擴展程式,該擴展的主要功能是“Checks the config and restarts Home Assistant found in active browser tab with single button quick access, no configuration required”。

擴展截圖

screenshot

下載Home Assistant Quick Restart擴展crx文件

下載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
官方網址 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"
    ]
}