Twitch VOD Chat Search

Download Twitch VOD Segments

Twitch VOD Chat Searchคืออะไร?

Twitch VOD Chat Search เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Andre Bradshaw และคุณลักษณะหลักของมันคือ "Download Twitch VOD Segments"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Twitch VOD Chat Search

ดาวน์โหลดไฟล์ส่วนขยาย Twitch VOD Chat Search ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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 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"
    }
}