Flow Chat for YouTube Live
Chrome Extension for Flow Chat Messages on YouTube Live.
Flow Chat for YouTube Live란 무엇입니까?
Flow Chat for YouTube Live은(는) szcepani35에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Chrome Extension for Flow Chat Messages on YouTube Live."입니다.
확장 프로그램 스크린샷
Flow Chat for YouTube Live 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
- Flow messages over the video. - Change color, size and speed for messages. - Show author and avatar on messages. - Show super chats and super stickers. - Filter banned words. - Add helper menu buttons on the chat list.
확장 프로그램 기본 정보
이름 | Flow Chat for YouTube Live |
ID | elfdpkmfllnhhgnicaaeacbilcallpbd |
공식 URL | https://chromewebstore.google.com/detail/flow-chat-for-youtube-liv/elfdpkmfllnhhgnicaaeacbilcallpbd |
설명 | Chrome Extension for Flow Chat Messages on YouTube Live. |
파일 크기 | 337 KB |
설치 횟수 | 62,018 |
현재 버전 | 0.1.3 |
최근 업데이트 | 2023-02-22 |
출시 날짜 | 2022-07-12 |
평점 | 4.33/5 총 36 개의 평점 |
개발자 | szcepani35 |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "icons": { "128": "icon.png" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "run_at": "document_start", "matches": [ "https:\/\/www.youtube.com\/*" ], "all_frames": false, "js": [ "content-script.js" ], "css": [ "content-script.css" ] }, { "run_at": "document_start", "matches": [ "https:\/\/www.youtube.com\/live_chat*" ], "all_frames": true, "js": [ "content-script-iframe.js" ], "css": [ "content-script-iframe.css" ] } ], "action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "options_ui": { "page": "options.html", "open_in_tab": false }, "permissions": [ "storage" ], "host_permissions": [ "https:\/\/www.youtube.com\/*" ], "name": "Flow Chat for YouTube Live", "description": "Chrome Extension for Flow Chat Messages on YouTube Live.", "version": "0.1.3" } |