Whenplane Widget
Replaces the floatplane/twitch offline box with a countdown from Whenplane
Co je Whenplane Widget?
Whenplane Widget je rozšíření Chrome vyvinuté https://whenplane.com, a jeho hlavní funkcí je „Replaces the floatplane/twitch offline box with a countdown from Whenplane“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Whenplane Widget
Stáhněte si soubory rozšíření Whenplane Widget ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | Whenplane Widget |
ID | jiijhgibeiaaacbohdjihncoingomjjm |
Oficiální URL | https://chromewebstore.google.com/detail/whenplane-widget/jiijhgibeiaaacbohdjihncoingomjjm |
Popis | Replaces the floatplane/twitch offline box with a countdown from Whenplane |
Velikost souboru | 32.86 KB |
Počet instalací | 271 |
Aktuální Verze | 1.2.0 |
Poslední Aktualizace | 2024-02-14 |
Datum Vydání | 2023-12-05 |
Hodnocení | 5.00/5 Celkem 3 Hodnocení |
Vývojář | https://whenplane.com |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://whenplane.com/extension |
URL Stránky Nápovědy | https://whenplane.com/support |
URL Stránky Zásad Ochrany Soukromí | https://whenplane.com/privacy |
Podporované Jazyky | 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}" } } } |