Youtube Popup Comments

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

Was ist Youtube Popup Comments?

Youtube Popup Comments ist eine Chrome-Erweiterung, die von Armaan Shah entwickelt wurde, und ihr Hauptmerkmal ist "A way to see comments while watching videos, without scrolling away from it".

Erweiterungsscreenshots

screenshot

Youtube Popup Comments-Erweiterungs-CRX-Datei herunterladen

Laden Sie Youtube Popup Comments-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Youtube Popup Comments Youtube Popup Comments
ID khlcpbakdpgeghfadigjkkmmhdccfmkk
Offizielle URL https://chromewebstore.google.com/detail/youtube-popup-comments/khlcpbakdpgeghfadigjkkmmhdccfmkk
Beschreibung A way to see comments while watching videos, without scrolling away from it
Dateigröße 24.61 KB
Installationsanzahl 91
Aktuelle Version 1.0
Letztes Update 2021-08-18
Veröffentlichungsdatum 2021-08-18
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler Armaan Shah
E-Mail [email protected]
Zahlungsart free
URL der Datenschutzrichtlinien-Seite https://raw.githubusercontent.com/DiamondDeadMaw/Youtube-Popup-Comments/main/Privacy%20Policy.txt
Unterstützte Sprachen 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"
    }
}