Youtube Chat in Fullscreen

A chrome extension creates an overlay to show Youtube live chat when in full screen

O que é Youtube Chat in Fullscreen?

Youtube Chat in Fullscreen é uma extensão do Chrome desenvolvida por neranyapi, e sua principal característica é "A chrome extension creates an overlay to show Youtube live chat when in full screen".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Youtube Chat in Fullscreen

Baixe arquivos de extensão Youtube Chat in Fullscreen 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

                        A chrome extension creates an overlay to show Youtube live chat when in full screen
Key features
- Show a live chat overlay when you are watching Youtube live stream in full screen
- Also support video pages with chat replay
- You can adjust position, opacity, size, and font size of overlay as you wish

Usages
- Use Ctrl + Alt + c to toggle overlay
- Press and hold Ctrl + Alt, then drag to move the position of overlay

Update logs
v.1.0.0.13 (26-Jan-2021)
- Native chat in beta
- Verified user is highlight as the same as owner
- Fixed the color of member name                    

Informações Básicas da Extensão

Nome Youtube Chat in Fullscreen Youtube Chat in Fullscreen
ID falbnmmgibpljgmgpmmckflkblfeaiim
URL Oficial https://chrome.google.com/webstore/detail/youtube-chat-in-fullscree/falbnmmgibpljgmgpmmckflkblfeaiim
Descrição A chrome extension creates an overlay to show Youtube live chat when in full screen
Tamanho do Arquivo 229 KB
Contagem de Instalações 193
Versão Atual 1.0.0.14
Última Atualização 2021-04-03
Data de Publicação 2021-04-03
Desenvolvedor neranyapi
Email [email protected]
Tipo de Pagamento free
URL da Página de Política de Privacidade https://docs.google.com/document/d/19ZzedyqQ4abdzpQeUZD1bwX0l2jXmepslR2b8WkcI0o
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube Chat in Fullscreen",
    "description": "A chrome extension creates an overlay to show Youtube live chat when in full screen",
    "version": "1.0.0.14",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": ".\/icons\/chat128.png"
    },
    "icons": {
        "16": ".\/icons\/chat16.png",
        "48": ".\/icons\/chat48.png",
        "128": ".\/icons\/chat128.png"
    },
    "permissions": [
        "storage",
        "activeTab",
        "webRequest",
        "*:\/\/*.youtube.com\/"
    ],
    "content_security_policy": "script-src 'self' https:\/\/apis.google.com; object-src 'self'",
    "web_accessible_resources": [
        "pageInject.js"
    ]
}