Show YouTube comments while watching
Show YouTube comments on the right of the video. Read comments while you watch!
Qu'est-ce que Show YouTube comments while watching ?
Show YouTube comments while watching est une extension Chrome développée par Tanguy Kurylo, et sa fonction principale est "Show YouTube comments on the right of the video. Read comments while you watch!".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Show YouTube comments while watching
Téléchargez les fichiers d'extension Show YouTube comments while watching au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
---------- Want to read comments while you watch a YouTube video? Tired of scrolling or pausing just to read comments? We got you. Comments now appear to the right of the video player, and suggested videos are moved underneath the video player. ---------- [Updates] Thank you so much for your comments! I do read all of them and appreciate your feedback. 1.0.4 * Fixed the extension breaking due to YouTube layout changes. Thank you all for your quick bug reports. 1.0.3 * Fixed a bug where comments would only swap after refreshing the page. * Migrated to Manifest V3 (new thingies from Google) before it becomes mandatory. Will be monitoring closely for bugs.
Informations de Base sur l'Extension
Nom | Show YouTube comments while watching |
ID | gonknbphdaoahjnamfjpaincammofgae |
URL Officiel | https://chromewebstore.google.com/detail/show-youtube-comments-whi/gonknbphdaoahjnamfjpaincammofgae |
Description | Show YouTube comments on the right of the video. Read comments while you watch! |
Taille du Fichier | 7.54 KB |
Nombre d'Installations | 13,391 |
Version Actuelle | 1.0.4 |
Dernière Mise à Jour | 2022-08-03 |
Date de Publication | 2019-04-06 |
Évaluation | 4.48/5 Total 91 Évaluations |
Développeur | Tanguy Kurylo |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/tanguykurylo/show-youtube-comments |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Show YouTube comments while watching", "version": "1.0.4", "description": "Show YouTube comments on the right of the video. Read comments while you watch!", "manifest_version": 3, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/watch*" ], "js": [ "showYoutubeComments.js" ], "css": [ "showYoutubeComments.css" ] } ], "host_permissions": [ "https:\/\/www.youtube.com\/watch*" ], "permissions": [ "scripting", "webNavigation", "storage" ], "background": { "service_worker": "detectPageChange.js" }, "action": { "default_popup": "popup.html", "default_icons": { "128": "128.png" } }, "icons": { "128": "128.png" } } |