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是由lowen.i.v開發的Chrome擴展程式,該擴展的主要功能是“This extension reads every message on YouTube live chat when you livestreaming.”。

擴展截圖

screenshot

下載YouTube studio livestreaming chat TTS擴展crx文件

下載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
官方網址 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"
    ]
}