YouTube Live Chat Enhancement

Makes chat easier to read for streamers and moderators by filtering and highlighting chat messages.

什麼是YouTube Live Chat Enhancement?

YouTube Live Chat Enhancement是由sirvival開發的Chrome擴展程式,該擴展的主要功能是“Makes chat easier to read for streamers and moderators by filtering and highlighting chat messages.”。

擴展截圖

screenshot

下載YouTube Live Chat Enhancement擴展crx文件

下載YouTube Live Chat Enhancement擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        YouTube Live Chat Enhancement

Allows for the option to:
Filtering out chat from specific users (ie: Nightbot) or !commands.
Completely remove deleted/retracted chat messages.
Use a hotkey to highlight the most recent chat message so you will know where to you left off.
Highlight special users who you don't want to miss

For mods out there is an option to:
Auto reveal deleted chat messages so it's easier to make sure the right things are being deleted.
Highlight certain words to bring attention to things that might need to be moderated.

To use this extension simply open up a gaming.youtube.com stream and you will notice two new buttons at the top of the chat allowing you to enable "Filtering" and "Moderation" options.                    

擴展基本資訊

名稱 YouTube Live Chat Enhancement YouTube Live Chat Enhancement
ID akikhgecfhfbdmiccfbgdmcjjbaiohbi
官方網址 https://chromewebstore.google.com/detail/youtube-live-chat-enhance/akikhgecfhfbdmiccfbgdmcjjbaiohbi
簡介 Makes chat easier to read for streamers and moderators by filtering and highlighting chat messages.
檔案大小 97.35 KB
安裝次數 2,240
目前版本 1.43
更新時間 2019-07-06
上架時間 2019-07-05
評分 3.93/5 共 15 次評分
開發者 sirvival
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_title": "YouTube Live Chat Enhancement by Codezen"
    },
    "description": "Makes chat easier to read for streamers and moderators by filtering and highlighting chat messages.",
    "icons": {
        "128": "icon128.png",
        "16": "icon16.png",
        "48": "icon48.png"
    },
    "commands": {
        "highlight-latest-chat": {
            "suggested_key": {
                "default": "Ctrl+Shift+Y",
                "mac": "Command+Shift+Y"
            },
            "description": "Highlight Latest Chat"
        }
    },
    "content_scripts": [
        {
            "js": [
                "jquery.js",
                "chat.js"
            ],
            "css": [
                "chat.css"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "storage"
    ],
    "manifest_version": 2,
    "name": "YouTube Live Chat Enhancement",
    "options_page": "options.html",
    "version": "1.43"
}