Comments Sidebar for Youtube

Allows you to watch videos and read comments at the same time on Youtube.

什麼是Comments Sidebar for Youtube?

Comments Sidebar for Youtube是由tberghuis開發的Chrome擴展程式,該擴展的主要功能是“Allows you to watch videos and read comments at the same time on Youtube.”。

擴展截圖

screenshot

下載Comments Sidebar for Youtube擴展crx文件

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

擴展使用說明

                        Chrome Extension to watch and read comments at the same time on Youtube.

Features a draggable divider to resize the player and the sidebar.

Source code available: https://github.com/tberghuis/watch-and-read-comments-for-youtube                    

擴展基本資訊

名稱 Comments Sidebar for Youtube Comments Sidebar for Youtube
ID cgijphidahihhjphcfklefeknhemmdgh
官方網址 https://chromewebstore.google.com/detail/comments-sidebar-for-yout/cgijphidahihhjphcfklefeknhemmdgh
簡介 Allows you to watch videos and read comments at the same time on Youtube.
檔案大小 42.12 KB
安裝次數 7,932
目前版本 0.6.0
更新時間 2023-07-24
上架時間 2019-09-24
評分 4.60/5 共 57 次評分
開發者 tberghuis
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/tberghuis/watch-and-read-comments-for-youtube
說明頁面URL https://github.com/tberghuis/watch-and-read-comments-for-youtube/issues
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Comments Sidebar for Youtube",
    "version": "0.6.0",
    "manifest_version": 3,
    "description": "Allows you to watch videos and read comments at the same time on Youtube.",
    "icons": {
        "16": "img\/icon.16.png",
        "32": "img\/icon.32.png",
        "48": "img\/icon.48.png",
        "128": "img\/icon.128.png"
    },
    "author": "tberghuis",
    "homepage_url": "https:\/\/github.com\/tberghuis\/watch-and-read-comments-for-youtube",
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "run_at": "document_end",
            "css": [
                "content\/vite.css"
            ],
            "js": [
                "content.js",
                "content\/vite.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "inject-vite.js"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ]
        }
    ]
}