Youtube Comment Viewer
Watch the video with comments on full screen!
Τι είναι το Youtube Comment Viewer;
Το Youtube Comment Viewer είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον tonymkcv93, και η κύρια λειτουργία του είναι "Watch the video with comments on full screen!".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Youtube Comment Viewer
Λήψη αρχείων επέκτασης Youtube Comment Viewer σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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] ----
Βασικές Πληροφορίες Επέκτασης
Όνομα | Youtube Comment Viewer |
ID | dbkfbnelkejobnjchbcebhhjeaengldp |
Επίσημο URL | https://chromewebstore.google.com/detail/youtube-comment-viewer/dbkfbnelkejobnjchbcebhhjeaengldp |
Περιγραφή | Watch the video with comments on full screen! |
Μέγεθος Αρχείου | 786 KB |
Αριθμός Εγκαταστάσεων | 482 |
Τρέχουσα Έκδοση | 1.0.6 |
Τελευταία Ενημέρωση | 2023-07-16 |
Ημερομηνία Δημοσίευσης | 2023-06-07 |
Αξιολόγηση | 5.00/5 Συνολικά 14 Αξιολογήσεις |
Προγραμματιστής | tonymkcv93 |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | 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" ] } |