Whenplane Widget
Replaces the floatplane/twitch offline box with a countdown from Whenplane
Τι είναι το Whenplane Widget;
Το Whenplane Widget είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://whenplane.com, και η κύρια λειτουργία του είναι "Replaces the floatplane/twitch offline box with a countdown from Whenplane".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Whenplane Widget
Λήψη αρχείων επέκτασης Whenplane Widget σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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. Βασικές Πληροφορίες Επέκτασης
| Όνομα | |
| ID | jiijhgibeiaaacbohdjihncoingomjjm |
| Επίσημο URL | https://chromewebstore.google.com/detail/whenplane-widget/jiijhgibeiaaacbohdjihncoingomjjm |
| Περιγραφή | Replaces the floatplane/twitch offline box with a countdown from Whenplane |
| Μέγεθος Αρχείου | 32.86 KB |
| Αριθμός Εγκαταστάσεων | 271 |
| Τρέχουσα Έκδοση | 1.2.0 |
| Τελευταία Ενημέρωση | 2024-02-14 |
| Ημερομηνία Δημοσίευσης | 2023-12-05 |
| Αξιολόγηση | 5.00/5 Συνολικά 3 Αξιολογήσεις |
| Προγραμματιστής | https://whenplane.com |
| Ηλεκτρονικό ταχυδρομείο | [email protected] |
| Τύπος Πληρωμής | free |
| Ιστότοπος Επέκτασης | https://whenplane.com/extension |
| Διεύθυνση URL της Σελίδας Βοήθειας | https://whenplane.com/support |
| URL της Σελίδας Πολιτικής Απορρήτου | https://whenplane.com/privacy |
| Υποστηριζόμενες Γλώσσες | 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}"
}
}
} | |