Youtube Popup Comments

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

Wat is Youtube Popup Comments?

Youtube Popup Comments is een Chrome-extensie ontwikkeld door Armaan Shah, en de belangrijkste functie is "A way to see comments while watching videos, without scrolling away from it".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Youtube Popup Comments

Download Youtube Popup Comments-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Youtube Popup Comments Youtube Popup Comments
ID khlcpbakdpgeghfadigjkkmmhdccfmkk
Officiële URL https://chromewebstore.google.com/detail/youtube-popup-comments/khlcpbakdpgeghfadigjkkmmhdccfmkk
Beschrijving A way to see comments while watching videos, without scrolling away from it
Bestandsgrootte 24.61 KB
Aantal Installaties 91
Huidige Versie 1.0
Laatst Bijgewerkt 2021-08-18
Publicatiedatum 2021-08-18
Beoordeling 5.00/5 Totaal 2 Beoordelingen
Ontwikkelaar Armaan Shah
E-mail [email protected]
Betalingswijze free
URL van de Privacybeleid Pagina https://raw.githubusercontent.com/DiamondDeadMaw/Youtube-Popup-Comments/main/Privacy%20Policy.txt
Ondersteunde Talen 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"
    }
}