Whenplane Widget

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

¿Qué es Whenplane Widget?

Whenplane Widget es una extensión de Chrome desarrollada por https://whenplane.com, y su función principal es "Replaces the floatplane/twitch offline box with a countdown from Whenplane".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Whenplane Widget

Descarga archivos de extensión Whenplane Widget en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Whenplane Widget Whenplane Widget
ID jiijhgibeiaaacbohdjihncoingomjjm
URL Oficial https://chromewebstore.google.com/detail/whenplane-widget/jiijhgibeiaaacbohdjihncoingomjjm
Descripción Replaces the floatplane/twitch offline box with a countdown from Whenplane
Tamaño del Archivo 32.86 KB
Cantidad de Instalaciones 271
Versión Actual 1.2.0
Última Actualización 2024-02-14
Fecha de Publicación 2023-12-05
Calificación 5.00/5 Total de 3 Calificaciones
Desarrollador https://whenplane.com
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://whenplane.com/extension
URL de la Página de Ayuda https://whenplane.com/support
URL de la Página de Política de Privacidad https://whenplane.com/privacy
Idiomas Soportados 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}"
        }
    }
}