Whenplane Widget
Replaces the floatplane/twitch offline box with a countdown from Whenplane
Was ist Whenplane Widget?
Whenplane Widget ist eine Chrome-Erweiterung, die von https://whenplane.com entwickelt wurde, und ihr Hauptmerkmal ist "Replaces the floatplane/twitch offline box with a countdown from Whenplane".
Erweiterungsscreenshots
Whenplane Widget-Erweiterungs-CRX-Datei herunterladen
Laden Sie Whenplane Widget-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | jiijhgibeiaaacbohdjihncoingomjjm |
| Offizielle URL | https://chromewebstore.google.com/detail/whenplane-widget/jiijhgibeiaaacbohdjihncoingomjjm |
| Beschreibung | Replaces the floatplane/twitch offline box with a countdown from Whenplane |
| Dateigröße | 32.86 KB |
| Installationsanzahl | 271 |
| Aktuelle Version | 1.2.0 |
| Letztes Update | 2024-02-14 |
| Veröffentlichungsdatum | 2023-12-05 |
| Bewertung | 5.00/5 Insgesamt 3 Bewertungen |
| Entwickler | https://whenplane.com |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://whenplane.com/extension |
| Hilfeseite URL | https://whenplane.com/support |
| URL der Datenschutzrichtlinien-Seite | https://whenplane.com/privacy |
| Unterstützte Sprachen | 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}"
}
}
} | |