ytcFilter
When Youtube chat is too fast
ytcFilter란 무엇입니까?
ytcFilter은(는) Kento Nishi에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "When Youtube chat is too fast"입니다.
확장 프로그램 스크린샷
ytcFilter 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Capture messages from Youtube chat based on filter rules. It comes with preset in order to filter: - English tagged messages - Messages with Japanese characters - Messages with alphanumeric characters - Messages from staff For more customization, It supports the following filters: * nickname * message including text * moderator * channel owner * membership * verified user * super chat * regular expression It works with the standard Youtube chat, but also embedded chat in 3rd party websites, Youtube popout chat. Your filtered message will appear either above Youtube's chat, or in a popout. Youtube's block/report button is integrated to fight against spam. All messages are archived too so that you can come back to them later.
확장 프로그램 기본 정보
이름 | ytcFilter |
ID | mnldnbhgfocmkehnlkeanlhfmopepnko |
공식 URL | https://chromewebstore.google.com/detail/ytcfilter/mnldnbhgfocmkehnlkeanlhfmopepnko |
설명 | When Youtube chat is too fast |
파일 크기 | 1.4 MB |
설치 횟수 | 12,782 |
현재 버전 | 2.2.0 |
최근 업데이트 | 2021-06-30 |
출시 날짜 | 2020-08-20 |
평점 | 4.30/5 총 56 개의 평점 |
개발자 | Kento Nishi |
이메일 | [email protected] |
결제 유형 | free |
도움말 페이지 URL | https://github.com/RomainLK/ytc-filter |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "ytcFilter", "description": "When Youtube chat is too fast", "version": "2.2.0", "manifest_version": 2, "icons": { "48": "icons\/icon_48.png", "128": "icons\/icon_128.png" }, "browser_action": { "default_title": "ytcFilter", "default_popup": "popup\/popup.html" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "web_accessible_resources": [ "content-style.css", "inject.js" ], "content_scripts": [ { "run_at": "document_start", "matches": [ "https:\/\/www.youtube.com\/live_chat*", "https:\/\/studio.youtube.com\/video\/*" ], "all_frames": true, "css": [ "content-style.css" ], "js": [ "content.js" ] } ], "permissions": [ "storage" ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';", "browser_specific_settings": { "gecko": { "id": "{20f2dcdf-6f8d-4aeb-862b-b13174475d9c}", "strict_min_version": "48.0" } } } |