Youtube Chat in Fullscreen

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

Qu'est-ce que Youtube Chat in Fullscreen ?

Youtube Chat in Fullscreen est une extension Chrome développée par neranyapi, et sa fonction principale est "A chrome extension creates an overlay to show Youtube live chat when in full screen".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Youtube Chat in Fullscreen

Téléchargez les fichiers d'extension Youtube Chat in Fullscreen au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Youtube Chat in Fullscreen Youtube Chat in Fullscreen
ID falbnmmgibpljgmgpmmckflkblfeaiim
URL Officiel https://chrome.google.com/webstore/detail/youtube-chat-in-fullscree/falbnmmgibpljgmgpmmckflkblfeaiim
Description A chrome extension creates an overlay to show Youtube live chat when in full screen
Taille du Fichier 229 KB
Nombre d'Installations 193
Version Actuelle 1.0.0.14
Dernière Mise à Jour 2021-04-03
Date de Publication 2021-04-03
Développeur neranyapi
Email [email protected]
Type de Paiement free
URL de la Page de Politique de Confidentialité https://docs.google.com/document/d/19ZzedyqQ4abdzpQeUZD1bwX0l2jXmepslR2b8WkcI0o
Langues Prises en Charge 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"
    ]
}