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
公式URL 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"
}