Whenplane Widget
Replaces the floatplane/twitch offline box with a countdown from Whenplane
What is Whenplane Widget?
Whenplane Widget is a Chrome extension developed by https://whenplane.com, and its main feature is "Replaces the floatplane/twitch offline box with a countdown from Whenplane".
Extension Screenshots
Download Whenplane Widget Extension CRX File
Download Whenplane Widget extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Whenplane Widget |
ID | jiijhgibeiaaacbohdjihncoingomjjm |
Official URL | https://chromewebstore.google.com/detail/whenplane-widget/jiijhgibeiaaacbohdjihncoingomjjm |
Description | Replaces the floatplane/twitch offline box with a countdown from Whenplane |
File Size | 32.86 KB |
Installation Count | 271 |
Current Version | 1.2.0 |
Last Updated | 2024-02-14 |
Publish Date | 2023-12-05 |
Rating | 5.00/5 Total 3 Ratings |
Developer | https://whenplane.com |
[email protected] | |
Payment Type | free |
Extension Website | https://whenplane.com/extension |
Help Page URL | https://whenplane.com/support |
Privacy Policy Page URL | https://whenplane.com/privacy |
Supported Languages | 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}" } } } |