Show YouTube comments while watching
Show YouTube comments on the right of the video. Read comments while you watch!
O que é Show YouTube comments while watching?
Show YouTube comments while watching é uma extensão do Chrome desenvolvida por Tanguy Kurylo, e sua principal característica é "Show YouTube comments on the right of the video. Read comments while you watch!".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Show YouTube comments while watching
Baixe arquivos de extensão Show YouTube comments while watching no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
---------- 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.
Informações Básicas da Extensão
Nome | Show YouTube comments while watching |
ID | gonknbphdaoahjnamfjpaincammofgae |
URL Oficial | https://chromewebstore.google.com/detail/show-youtube-comments-whi/gonknbphdaoahjnamfjpaincammofgae |
Descrição | Show YouTube comments on the right of the video. Read comments while you watch! |
Tamanho do Arquivo | 7.54 KB |
Contagem de Instalações | 13,391 |
Versão Atual | 1.0.4 |
Última Atualização | 2022-08-03 |
Data de Publicação | 2019-04-06 |
Classificação | 4.48/5 Total de 91 Avaliações |
Desenvolvedor | Tanguy Kurylo |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/tanguykurylo/show-youtube-comments |
Idiomas Suportados | 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" } } |