YouTube studio livestreaming chat TTS

This extension reads every message on YouTube live chat when you livestreaming.

YouTube studio livestreaming chat TTSคืออะไร?

YouTube studio livestreaming chat TTS เป็นส่วนขยายของ Chrome ที่พัฒนาโดย lowen.i.v และคุณลักษณะหลักของมันคือ "This extension reads every message on YouTube live chat when you livestreaming."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YouTube studio livestreaming chat TTS

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

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

                        # YouTube studio livestreaming chat TTS
This extension reads every message on YouTube live chat when you livestreaming.

# Features
* CLEAR QUEUE PRESS ESC
* PAUSE USE YOUR MIC  OR PRESS space
* support for removing messages
* possibility to set delay between messages
* reading emojis

# Support
Currently it support Google Chrome.                    

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

ชื่อ YouTube studio livestreaming chat TTS YouTube studio livestreaming chat TTS
ID jalppohegcfklglkihmhdadmjindneij
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/youtube-studio-livestream/jalppohegcfklglkihmhdadmjindneij
คำอธิบาย This extension reads every message on YouTube live chat when you livestreaming.
ขนาดไฟล์ 49 KB
จำนวนการติดตั้ง 228
เวอร์ชันปัจจุบัน 0.0.0.2
อัปเดตครั้งล่าสุด 2021-02-16
วันที่เผยแพร่ 2021-02-07
คะแนน 2.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา lowen.i.v
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "name": "YouTube studio livestreaming chat TTS",
    "description": "This extension reads every message on YouTube live chat when you livestreaming.",
    "version": "0.0.0.2",
    "author": "ileowin",
    "browser_action": {
        "default_popup": "options.html"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/studio.youtube.com\/video\/*\/livestreaming*"
            ],
            "js": [
                "jquery-3.2.0.min.js",
                "script.js"
            ],
            "all_frames": true
        }
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "web_accessible_resources": [
        "options.html"
    ]
}