Whenplane Widget

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

O que é Whenplane Widget?

Whenplane Widget é uma extensão do Chrome desenvolvida por https://whenplane.com, e sua principal característica é "Replaces the floatplane/twitch offline box with a countdown from Whenplane".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Whenplane Widget

Baixe arquivos de extensão Whenplane Widget no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Whenplane Widget Whenplane Widget
ID jiijhgibeiaaacbohdjihncoingomjjm
URL Oficial https://chromewebstore.google.com/detail/whenplane-widget/jiijhgibeiaaacbohdjihncoingomjjm
Descrição Replaces the floatplane/twitch offline box with a countdown from Whenplane
Tamanho do Arquivo 32.86 KB
Contagem de Instalações 271
Versão Atual 1.2.0
Última Atualização 2024-02-14
Data de Publicação 2023-12-05
Classificação 5.00/5 Total de 3 Avaliações
Desenvolvedor https://whenplane.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://whenplane.com/extension
URL da Página de Ajuda https://whenplane.com/support
URL da Página de Política de Privacidade https://whenplane.com/privacy
Idiomas Suportados 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}"
        }
    }
}