Twitch Chat Overlay
Overlay the Twitch chat when in fullscreen mode.
O que é Twitch Chat Overlay?
Twitch Chat Overlay é uma extensão do Chrome desenvolvida por trmcnvn, e sua principal característica é "Overlay the Twitch chat when in fullscreen mode.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Twitch Chat Overlay
Baixe arquivos de extensão Twitch Chat Overlay 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
Twitch Chat Overlay will allow you to view and interact with the chat while watching a stream in fullscreen. You can move, resize, and toggle the chat window while in full-screen and these settings are remembered the next time you watch!
Informações Básicas da Extensão
Nome | Twitch Chat Overlay |
ID | lcljofkmbcdnjekeamikmefcjohmhgng |
URL Oficial | https://chromewebstore.google.com/detail/twitch-chat-overlay/lcljofkmbcdnjekeamikmefcjohmhgng |
Descrição | Overlay the Twitch chat when in fullscreen mode. |
Tamanho do Arquivo | 25.92 KB |
Contagem de Instalações | 3,615 |
Versão Atual | 1.10 |
Última Atualização | 2020-01-21 |
Data de Publicação | 2020-01-14 |
Classificação | 3.70/5 Total de 10 Avaliações |
Desenvolvedor | trmcnvn |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/trmcnvn/twitch-chat-overlay |
URL da Página de Ajuda | https://github.com/trmcnvn/twitch-chat-overlay/issues |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Twitch Chat Overlay", "description": "Overlay the Twitch chat when in fullscreen mode.", "version": "1.10", "homepage_url": "https:\/\/github.com\/trmcnvn\/twitch-chat-overlay", "icons": { "16": "resources\/icon-16.jpg", "48": "resources\/icon-48.jpg", "96": "resources\/icon-96.jpg", "128": "resources\/icon-128.jpg" }, "web_accessible_resources": [ "overlay.js" ], "content_scripts": [ { "matches": [ "*:\/\/*.twitch.tv\/*" ], "js": [ "main.js" ], "css": [ "style.css" ], "run_at": "document_idle" } ] } |