Whenplane Widget

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

Cos'è Whenplane Widget?

Whenplane Widget è un'estensione di Chrome sviluppata da https://whenplane.com, e la sua funzione principale è "Replaces the floatplane/twitch offline box with a countdown from Whenplane".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Whenplane Widget

Scarica i file di estensione Whenplane Widget in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Whenplane Widget Whenplane Widget
ID jiijhgibeiaaacbohdjihncoingomjjm
URL Ufficiale https://chromewebstore.google.com/detail/whenplane-widget/jiijhgibeiaaacbohdjihncoingomjjm
Descrizione Replaces the floatplane/twitch offline box with a countdown from Whenplane
Dimensione del File 32.86 KB
Conteggio Installazioni 271
Versione Corrente 1.2.0
Ultimo Aggiornamento 2024-02-14
Data di Pubblicazione 2023-12-05
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore https://whenplane.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://whenplane.com/extension
URL della Pagina di Aiuto https://whenplane.com/support
URL della Pagina della Politica sulla Privacy https://whenplane.com/privacy
Lingue Supportate 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}"
        }
    }
}