Live Thread Ticker

Live Thread Ticker (LTT) adds a ticker to videos to display live comments from threads

Live Thread Tickerคืออะไร?

Live Thread Ticker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Ryan O และคุณลักษณะหลักของมันคือ "Live Thread Ticker (LTT) adds a ticker to videos to display live comments from threads"

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

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Live Thread Ticker

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

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

                        Live Thread Ticker (LTT) is an open source extension that adds a ticker to the top or bottom of video streams to display live comments from Reddit game threads.

How to Use: After downloading the extension, go to the game thread comments page within reddit for the desired sporting event and copy the full URL, paste the URL into the extension, then go wherever you stream the sporting event from and play the stream. The ticker will load the comments as they come in live and display them above or below the video stream.

This extension also includes the following user settings:
- Comment Delay Time: allows you to set a customizable time delay to the comments so you can match the timing with your stream to avoid any spoilers
- Display Location: allows you to set the ticker to display at the top or bottom of the video stream
- Upvote Display Minimum: allows you to filter out displaying comments below a set number of upvotes
- Font Size: allows you to set how large the ticker should be
- Text Filter: allows you to suppress comments from displaying that contain any keywords that you enter

Video on how to use: https://youtu.be/61DNfg7ksRs

View code: https://github.com/RG-O/LiveThreadTicker                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Live Thread Ticker Live Thread Ticker
ID kiggnkckiglahmnikkilmngphgingclp
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/live-thread-ticker/kiggnkckiglahmnikkilmngphgingclp
คำอธิบาย Live Thread Ticker (LTT) adds a ticker to videos to display live comments from threads
ขนาดไฟล์ 21.5 KB
จำนวนการติดตั้ง 378
เวอร์ชันปัจจุบัน 1.8
อัปเดตครั้งล่าสุด 2022-09-15
วันที่เผยแพร่ 2022-01-19
คะแนน 4.50/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา Ryan O
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้าช่วยเหลือ https://www.reddit.com/r/LiveThreadTicker/
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "js\/initiate-ticker.js",
                "js\/html-generator.js",
                "js\/comment-fetcher.js"
            ],
            "css": [
                "css\/ticker.css"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_idle"
        }
    ],
    "description": "Live Thread Ticker (LTT) adds a ticker to videos to display live comments from threads",
    "icons": {
        "128": "icon.png"
    },
    "manifest_version": 3,
    "name": "Live Thread Ticker",
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "128": "icon.png",
            "16": "iconSm.png",
            "32": "icon.png",
            "48": "icon.png"
        }
    },
    "version": "1.8"
}