YouTube Live Chat Enhancement

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

O que é YouTube Live Chat Enhancement?

YouTube Live Chat Enhancement é uma extensão do Chrome desenvolvida por sirvival, e sua principal característica é "Makes chat easier to read for streamers and moderators by filtering and highlighting chat messages.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão YouTube Live Chat Enhancement

Baixe arquivos de extensão YouTube Live Chat Enhancement no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome YouTube Live Chat Enhancement YouTube Live Chat Enhancement
ID akikhgecfhfbdmiccfbgdmcjjbaiohbi
URL Oficial https://chromewebstore.google.com/detail/youtube-live-chat-enhance/akikhgecfhfbdmiccfbgdmcjjbaiohbi
Descrição Makes chat easier to read for streamers and moderators by filtering and highlighting chat messages.
Tamanho do Arquivo 97.35 KB
Contagem de Instalações 2,240
Versão Atual 1.43
Última Atualização 2019-07-06
Data de Publicação 2019-07-05
Classificação 3.93/5 Total de 15 Avaliações
Desenvolvedor sirvival
Tipo de Pagamento free
Idiomas Suportados 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"
}