Twitch VOD Chat Search
Download Twitch VOD Segments
Twitch VOD Chat Search란 무엇입니까?
Twitch VOD Chat Search은(는) Andre Bradshaw에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Download Twitch VOD Segments"입니다.
확장 프로그램 스크린샷
Twitch VOD Chat Search 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension assists with identifying timestamps on Twitch VODs by providing a tool for searching chat comments within a VOD. The idea is that if we are looking for some topic in a VOD, chat will be talking about it -- so we can find the comments and grab the timestamp off of the comment in the VOD. This tool supports standard search operators and regular expressions. Version 2.12 (11 June 2023) Updates: 1) bug fixes Version 2.12 (8 Apr 2023) Updates: 1) bug fixes Known issues: 1) user images are no longer loading due to availability. There may be no solution to this, UI will be updated accordingly in the next major release. Version 2.11 (9 Dec 2022) Updates: 1) Migrated to Manifest Version 3 2) Fixed issues with background process changes at Twitch which broke the code 3) Increased the speed of download Known issues: 1) user images are no longer loading due to availability. Version 1.4.1 Updates (13 Feb 2022) 1) added a new view which allows a user to see the chat saturation over time a) clicking in the timeline will open the VOD at that timestamp. Version 1.3.1 Updates (17 Dec 2021) 1) added the ability to pull and search the current stream chat. 2) added the ability to download the filtered logs Version 1.21 Updates (9 Dec 2021) 1) Fixed a change in the website which was causing the application to fail.
확장 프로그램 기본 정보
이름 | Twitch VOD Chat Search |
ID | akfpheepndpgecgiglbnglglnnjfppec |
공식 URL | https://chromewebstore.google.com/detail/twitch-vod-chat-search/akfpheepndpgecgiglbnglglnnjfppec |
설명 | Download Twitch VOD Segments |
파일 크기 | 80.86 KB |
설치 횟수 | 3,788 |
현재 버전 | 2.13 |
최근 업데이트 | 2023-06-12 |
출시 날짜 | 2021-09-28 |
평점 | 4.51/5 총 39 개의 평점 |
개발자 | Andre Bradshaw |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Twitch VOD Chat Search", "version": "2.13", "description": "Download Twitch VOD Segments", "content_scripts": [ { "matches": [ "https:\/\/www.twitch.tv\/*" ], "js": [ "content.js" ] } ], "background": { "service_worker": "background.js" }, "host_permissions": [ "https:\/\/gql.twitch.tv\/gql", "https:\/\/api.twitch.tv\/*" ], "icons": { "16": "16.png", "48": "48.png", "128": "128.png" } } |