Whenplane Widget
Replaces the floatplane/twitch offline box with a countdown from Whenplane
Wat is Whenplane Widget?
Whenplane Widget is een Chrome-extensie ontwikkeld door https://whenplane.com, en de belangrijkste functie is "Replaces the floatplane/twitch offline box with a countdown from Whenplane".
Extensie Screenshots
Download het CRX-bestand van de extensie Whenplane Widget
Download Whenplane Widget-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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. Basisinformatie over de Extensie
| Naam | |
| ID | jiijhgibeiaaacbohdjihncoingomjjm |
| Officiële URL | https://chromewebstore.google.com/detail/whenplane-widget/jiijhgibeiaaacbohdjihncoingomjjm |
| Beschrijving | Replaces the floatplane/twitch offline box with a countdown from Whenplane |
| Bestandsgrootte | 32.86 KB |
| Aantal Installaties | 271 |
| Huidige Versie | 1.2.0 |
| Laatst Bijgewerkt | 2024-02-14 |
| Publicatiedatum | 2023-12-05 |
| Beoordeling | 5.00/5 Totaal 3 Beoordelingen |
| Ontwikkelaar | https://whenplane.com |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | https://whenplane.com/extension |
| Help Pagina-URL | https://whenplane.com/support |
| URL van de Privacybeleid Pagina | https://whenplane.com/privacy |
| Ondersteunde Talen | 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}"
}
}
} | |