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
公式URL 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
Eメール [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"
    }
}