Whenplane Widget

Replaces the floatplane/twitch offline box with a countdown from Whenplane

什麼是Whenplane Widget?

Whenplane Widget是由https://whenplane.com開發的Chrome擴展程式,該擴展的主要功能是“Replaces the floatplane/twitch offline box with a countdown from Whenplane”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot

下載Whenplane Widget擴展crx文件

下載Whenplane Widget擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        A simple extension that replaces the Offline box and image with a countdown from Whenplane. Only applies to the LinusTechTips channels, because they are the only Floatplane/Twitch channels where the WAN show is live-streamed.

It only replaces the "offline" box, so as soon as any livestream starts, the whenplane widget will be removed, and the livestream will play like normal.                    

擴展基本資訊

名稱 Whenplane Widget Whenplane Widget
ID jiijhgibeiaaacbohdjihncoingomjjm
官方網址 https://chromewebstore.google.com/detail/whenplane-widget/jiijhgibeiaaacbohdjihncoingomjjm
簡介 Replaces the floatplane/twitch offline box with a countdown from Whenplane
檔案大小 32.86 KB
安裝次數 271
目前版本 1.2.0
更新時間 2024-02-14
上架時間 2023-12-05
評分 5.00/5 共 3 次評分
開發者 https://whenplane.com
電子郵箱 [email protected]
付費類型 free
擴展官網 https://whenplane.com/extension
說明頁面URL https://whenplane.com/support
隱私政策頁面URL https://whenplane.com/privacy
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Whenplane Widget",
    "short_name": "Whenplane",
    "version": "1.2.0",
    "description": "Replaces the floatplane\/twitch offline box with a countdown from Whenplane",
    "homepage_url": "https:\/\/whenplane.com\/extension",
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "about.html"
    },
    "icons": {
        "128": "icons\/wan-128.png",
        "200": "icons\/wan.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.floatplane.com\/*"
            ],
            "js": [
                "inserter.js"
            ],
            "css": [
                "css\/whenplane_styles.css"
            ]
        },
        {
            "matches": [
                "*:\/\/*.twitch.tv\/*"
            ],
            "js": [
                "inserter.js"
            ],
            "css": [
                "css\/whenplane_styles.css",
                "css\/twitch.css"
            ]
        }
    ],
    "browser_specific_settings": {
        "gecko": {
            "id": "{d7efb617-4782-4ca1-841e-f1fde210896b}"
        }
    }
}