Whenplane Widget

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

Whenplane Widget क्या है?

Whenplane Widget https://whenplane.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Replaces the floatplane/twitch offline box with a countdown from Whenplane"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Whenplane Widget एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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}"
        }
    }
}