Whenplane Widget

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

Whenplane Widget là gì?

Whenplane Widget là một tiện ích mở rộng Chrome được phát triển bởi https://whenplane.com, và tính năng chính của nó là "Replaces the floatplane/twitch offline box with a countdown from Whenplane".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Whenplane Widget

Tải xuống các tệp mở rộng Whenplane Widget dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Whenplane Widget Whenplane Widget
ID jiijhgibeiaaacbohdjihncoingomjjm
URL Chính Thức https://chromewebstore.google.com/detail/whenplane-widget/jiijhgibeiaaacbohdjihncoingomjjm
Mô tả Replaces the floatplane/twitch offline box with a countdown from Whenplane
Kích Thước Tệp 32.86 KB
Số Lần Cài Đặt 271
Phiên Bản Hiện Tại 1.2.0
Cập Nhật Lần Cuối 2024-02-14
Ngày Phát Hành 2023-12-05
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển https://whenplane.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://whenplane.com/extension
URL Trang Trợ Giúp https://whenplane.com/support
URL Trang Chính Sách Bảo Mật https://whenplane.com/privacy
Ngôn Ngữ Được Hỗ Trợ 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}"
        }
    }
}