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.
Основная информация о расширении
Название | Whenplane Widget |
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}" } } } |