Comments Sidebar for Youtube
Allows you to watch videos and read comments at the same time on Youtube.
Τι είναι το Comments Sidebar for Youtube;
Το Comments Sidebar for Youtube είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον tberghuis, και η κύρια λειτουργία του είναι "Allows you to watch videos and read comments at the same time on Youtube.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Comments Sidebar for Youtube
Λήψη αρχείων επέκτασης Comments Sidebar for Youtube σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Chrome Extension to watch and read comments at the same time on Youtube. Features a draggable divider to resize the player and the sidebar. Source code available: https://github.com/tberghuis/watch-and-read-comments-for-youtube
Βασικές Πληροφορίες Επέκτασης
Όνομα | Comments Sidebar for Youtube |
ID | cgijphidahihhjphcfklefeknhemmdgh |
Επίσημο URL | https://chromewebstore.google.com/detail/comments-sidebar-for-yout/cgijphidahihhjphcfklefeknhemmdgh |
Περιγραφή | Allows you to watch videos and read comments at the same time on Youtube. |
Μέγεθος Αρχείου | 42.12 KB |
Αριθμός Εγκαταστάσεων | 7,932 |
Τρέχουσα Έκδοση | 0.6.0 |
Τελευταία Ενημέρωση | 2023-07-24 |
Ημερομηνία Δημοσίευσης | 2019-09-24 |
Αξιολόγηση | 4.60/5 Συνολικά 57 Αξιολογήσεις |
Προγραμματιστής | tberghuis |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/tberghuis/watch-and-read-comments-for-youtube |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/tberghuis/watch-and-read-comments-for-youtube/issues |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Comments Sidebar for Youtube", "version": "0.6.0", "manifest_version": 3, "description": "Allows you to watch videos and read comments at the same time on Youtube.", "icons": { "16": "img\/icon.16.png", "32": "img\/icon.32.png", "48": "img\/icon.48.png", "128": "img\/icon.128.png" }, "author": "tberghuis", "homepage_url": "https:\/\/github.com\/tberghuis\/watch-and-read-comments-for-youtube", "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "run_at": "document_end", "css": [ "content\/vite.css" ], "js": [ "content.js", "content\/vite.js" ] } ], "background": { "service_worker": "background.js" }, "action": { "default_popup": "popup.html" }, "web_accessible_resources": [ { "resources": [ "inject-vite.js" ], "matches": [ "https:\/\/www.youtube.com\/*" ] } ] } |