YouTube studio livestreaming chat TTS

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

YouTube studio livestreaming chat TTS là gì?

YouTube studio livestreaming chat TTS là một tiện ích mở rộng Chrome được phát triển bởi lowen.i.v, và tính năng chính của nó là "This extension reads every message on YouTube live chat when you livestreaming.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng YouTube studio livestreaming chat TTS

Tải xuống các tệp mở rộng YouTube studio livestreaming chat TTS dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        # 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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên YouTube studio livestreaming chat TTS YouTube studio livestreaming chat TTS
ID jalppohegcfklglkihmhdadmjindneij
URL Chính Thức https://chromewebstore.google.com/detail/youtube-studio-livestream/jalppohegcfklglkihmhdadmjindneij
Mô tả This extension reads every message on YouTube live chat when you livestreaming.
Kích Thước Tệp 49 KB
Số Lần Cài Đặt 228
Phiên Bản Hiện Tại 0.0.0.2
Cập Nhật Lần Cuối 2021-02-16
Ngày Phát Hành 2021-02-07
Đánh Giá 2.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển lowen.i.v
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}