Youtube Popup Comments

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

What is Youtube Popup Comments?

Youtube Popup Comments is a Chrome extension developed by Armaan Shah, and its main feature is "A way to see comments while watching videos, without scrolling away from it".

Extension Screenshots

screenshot

Download Youtube Popup Comments Extension CRX File

Download Youtube Popup Comments extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Youtube Popup Comments Youtube Popup Comments
ID khlcpbakdpgeghfadigjkkmmhdccfmkk
Official URL https://chromewebstore.google.com/detail/youtube-popup-comments/khlcpbakdpgeghfadigjkkmmhdccfmkk
Description A way to see comments while watching videos, without scrolling away from it
File Size 24.61 KB
Installation Count 91
Current Version 1.0
Last Updated 2021-08-18
Publish Date 2021-08-18
Rating 5.00/5 Total 2 Ratings
Developer Armaan Shah
Email [email protected]
Payment Type free
Privacy Policy Page URL https://raw.githubusercontent.com/DiamondDeadMaw/Youtube-Popup-Comments/main/Privacy%20Policy.txt
Supported Languages 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"
    }
}