Youtube Chat in Fullscreen

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

什麼是Youtube Chat in Fullscreen?

Youtube Chat in Fullscreen是由neranyapi開發的Chrome擴展程式,該擴展的主要功能是“A chrome extension creates an overlay to show Youtube live chat when in full screen”。

擴展截圖

screenshot

下載Youtube Chat in Fullscreen擴展crx文件

下載Youtube Chat in Fullscreen擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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                    

擴展基本資訊

名稱 Youtube Chat in Fullscreen Youtube Chat in Fullscreen
ID falbnmmgibpljgmgpmmckflkblfeaiim
官方網址 https://chrome.google.com/webstore/detail/youtube-chat-in-fullscree/falbnmmgibpljgmgpmmckflkblfeaiim
簡介 A chrome extension creates an overlay to show Youtube live chat when in full screen
檔案大小 229 KB
安裝次數 193
目前版本 1.0.0.14
更新時間 2021-04-03
上架時間 2021-04-03
開發者 neranyapi
電子郵箱 [email protected]
付費類型 free
隱私政策頁面URL https://docs.google.com/document/d/19ZzedyqQ4abdzpQeUZD1bwX0l2jXmepslR2b8WkcI0o
支援的語言 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"
    ]
}