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是由alvistseio開發的Chrome擴展程式,該擴展的主要功能是“A chrome extension creates an overlay to show Youtube live chat when in full screen”。

擴展截圖

screenshot
screenshot
screenshot

下載Youtube Chat in Fullscreen擴展crx文件

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

擴展使用說明

                        If you have any problem and feature request, join the discord server https://discord.gg/RJGpyC98Ss

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 + Shift + y to toggle overlay


Update logs

v2.0.4 (2-Apr-2022)
- Fixed conflict with Enhancer for YouTube™

v2.0.3 (28-Sept-2021)
-   Fixed Live Member Chat message

v2.0.2 (26-Aug-2021)
- Fixed bug make app crashed by message emoji

v2.0.1 (2-May-2021)
- Auto hide toolbar

v2.0 (26-April-2021)
- New Overlay UI
  - Much intuitive resizing method
  - Do not have annoying toolbar to block the content
- Chat filter for each video page
- Added Super Sticker Support
- Fixed shortcut issue by change shortcut to ctrl+shift+y                    

擴展基本資訊

名稱 Youtube Chat in Fullscreen Youtube Chat in Fullscreen
ID kmhclnjhlejdjlkgeebolkigafpaijkp
官方網址 https://chromewebstore.google.com/detail/youtube-chat-in-fullscree/kmhclnjhlejdjlkgeebolkigafpaijkp
簡介 A chrome extension creates an overlay to show Youtube live chat when in full screen
檔案大小 233 KB
安裝次數 132,128
目前版本 2.0.4
更新時間 2022-04-02
上架時間 2020-09-28
評分 4.37/5 共 183 次評分
開發者 alvistseio
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/Shad02w/Youtube-Chat-in-Fullscreen
說明頁面URL https://github.com/Shad02w/Youtube-Chat-in-Fullscreen/issues
支援的語言 en-US
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": "2.0.4",
    "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",
        "css\/NativeChatFilter.css"
    ]
}