Youtube Popup Comments

A way to see comments while watching videos, without scrolling away from it

什麼是Youtube Popup Comments?

Youtube Popup Comments是由Armaan Shah開發的Chrome擴展程式,該擴展的主要功能是“A way to see comments while watching videos, without scrolling away from it”。

擴展截圖

screenshot

下載Youtube Popup Comments擴展crx文件

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

擴展使用說明

                        Ever wanted to read the comments on a YouTube video, without scrolling down to the comments section and missing any of the action?
With this extension, you can.
Simply click on the button added to the top of the YouTube UI (next to the watch later button), and scroll through the comments using the newly created pop-up window that appears on top of your video.
Click on the button again to close the pop-up when you want to focus on your video.                    

擴展基本資訊

名稱 Youtube Popup Comments Youtube Popup Comments
ID khlcpbakdpgeghfadigjkkmmhdccfmkk
官方網址 https://chromewebstore.google.com/detail/youtube-popup-comments/khlcpbakdpgeghfadigjkkmmhdccfmkk
簡介 A way to see comments while watching videos, without scrolling away from it
檔案大小 24.61 KB
安裝次數 91
目前版本 1.0
更新時間 2021-08-18
上架時間 2021-08-18
評分 5.00/5 共 2 次評分
開發者 Armaan Shah
電子郵箱 [email protected]
付費類型 free
隱私政策頁面URL https://raw.githubusercontent.com/DiamondDeadMaw/Youtube-Popup-Comments/main/Privacy%20Policy.txt
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube Popup Comments",
    "description": "A way to see comments while watching videos, without scrolling away from it",
    "version": "1.0",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "scripting"
    ],
    "host_permissions": [
        ""
    ],
    "content_scripts": [
        {
            "css": [
                "popupCommentsStyles.css"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ]
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}