Whenplane Widget

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

Whenplane Widgetคืออะไร?

Whenplane Widget เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://whenplane.com และคุณลักษณะหลักของมันคือ "Replaces the floatplane/twitch offline box with a countdown from Whenplane"

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

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Whenplane Widget

ดาวน์โหลดไฟล์ส่วนขยาย 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
URL อย่างเป็นทางการ 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}"
        }
    }
}