YouTube Moderator Watcher
In a YouTube Live chat, the moderator's and owner's statements will be fixed on the screen for a certain period of time.
YouTube Moderator Watcher란 무엇입니까?
YouTube Moderator Watcher은(는) rinepoyo에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "In a YouTube Live chat, the moderator's and owner's statements will be fixed on the screen for a certain period of time."입니다.
확장 프로그램 스크린샷
YouTube Moderator Watcher 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
- It will be fixed if the target chat is no longer visible in the chat field earlier than the set time. If the flow is slow enough, it will not be fixed. - Fixed chats will be unfixed after the set time. - When you mouse over a fixed chat, a close button (X icon) will appear. - You can specify the target of the fixing, whether it is a confirmed user or not, by specifying a name. - You can exclude chatbots by specifying their names. - You can set NG words to delete the chat or hide the text only. - Regular expressions can be used as NG words. UPDATE(v0.3.0) - New option : Hide chat by non-members - Fixed layout bug.
확장 프로그램 기본 정보
이름 | YouTube Moderator Watcher |
ID | ejabebmjoidahjmjlgfopaddflpfagco |
공식 URL | https://chromewebstore.google.com/detail/youtube-moderator-watcher/ejabebmjoidahjmjlgfopaddflpfagco |
설명 | In a YouTube Live chat, the moderator's and owner's statements will be fixed on the screen for a certain period of time. |
파일 크기 | 80.14 KB |
설치 횟수 | 439 |
현재 버전 | 0.3.0 |
최근 업데이트 | 2022-06-05 |
출시 날짜 | 2020-09-19 |
평점 | 4.00/5 총 1 개의 평점 |
개발자 | rinepoyo |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/rinepoyo/youtube-moderator-watcher |
지원되는 언어 | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Moderator Watcher", "version": "0.3.0", "manifest_version": 2, "description": "__MSG_extDescription__", "icons": { "16": "images\/size16.png", "48": "images\/size48.png", "128": "images\/size128.png" }, "permissions": [ "storage", "tabs" ], "default_locale": "en", "content_scripts": [ { "run_at": "document_idle", "all_frames": true, "matches": [ "https:\/\/*.youtube.com\/live_chat**" ], "js": [ "storage.js", "content.js" ], "css": [ "content.css" ] } ], "web_accessible_resources": [ "image\/*" ], "browser_action": { "default_popup": "options.html" } } |