Whenplane Widget
Replaces the floatplane/twitch offline box with a countdown from Whenplane
Whenplane Widgetとは何ですか?
Whenplane Widgetはhttps://whenplane.comによって開発されたChromeの拡張機能で、その主な機能は「Replaces the floatplane/twitch offline box with a countdown from Whenplane」です。
拡張機能のスクリーンショット
Whenplane Widget拡張機能のCRXファイルをダウンロード
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 |
| Eメール | [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}"
}
}
} | |