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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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}" } } } |