Youtube Comment Viewer

Watch the video with comments on full screen!

Was ist Youtube Comment Viewer?

Youtube Comment Viewer ist eine Chrome-Erweiterung, die von tonymkcv93 entwickelt wurde, und ihr Hauptmerkmal ist "Watch the video with comments on full screen!".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Youtube Comment Viewer-Erweiterungs-CRX-Datei herunterladen

Laden Sie Youtube Comment Viewer-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

                        Enjoy view comments on all types of screens without scrolling down!!

----
Features

➡️ View comment with all video types (fullscreen, theater, general mode)
➡️ Drag to size the comment window
➡️ Automatically resize the video based on the size of the comment window
➡️ Support Dark mode
➡️ easily Toggle "always turn on/off Comment Viewer"

----
Why youtube comment viewer is needed.

Traditional YouTube requires scrolling down to read comments. This is very cumbersome. 

With 'Youtube Comment Viewer', you can easily display comments on the right side of the video, and the size of the window can also be resized

----
💬Bug reports and inquiries -  [email protected]
----                    

Grundlegende Informationen zur Erweiterung

Name Youtube Comment Viewer Youtube Comment Viewer
ID dbkfbnelkejobnjchbcebhhjeaengldp
Offizielle URL https://chromewebstore.google.com/detail/youtube-comment-viewer/dbkfbnelkejobnjchbcebhhjeaengldp
Beschreibung Watch the video with comments on full screen!
Dateigröße 786 KB
Installationsanzahl 482
Aktuelle Version 1.0.6
Letztes Update 2023-07-16
Veröffentlichungsdatum 2023-06-07
Bewertung 5.00/5 Insgesamt 14 Bewertungen
Entwickler tonymkcv93
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en,zh-CN,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "1.0.6",
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "background": {
        "service_worker": "scripts\/background.js"
    },
    "web_accessible_resources": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "resources": [
                "scripts\/interact.js"
            ]
        }
    ],
    "content_scripts": [
        {
            "type": "module",
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "scripts\/content-script.js"
            ],
            "css": [
                "styles\/style.css"
            ]
        }
    ],
    "action": {
        "default_icon": "images\/icon.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "128": "images\/icon.png"
    },
    "permissions": [
        "webNavigation",
        "storage"
    ]
}