Show YouTube comments while watching
Show YouTube comments on the right of the video. Read comments while you watch!
什么是Show YouTube comments while watching?
Show YouTube comments while watching是由Tanguy Kurylo开发的Chrome扩展程序,该扩展的主要功能是“Show YouTube comments on the right of the video. Read comments while you watch!”。
扩展截图
下载Show YouTube comments while watching扩展crx文件
下载Show YouTube comments while watching扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
---------- 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.
扩展基本信息
名称 | Show YouTube comments while watching |
ID | gonknbphdaoahjnamfjpaincammofgae |
官方URL | https://chromewebstore.google.com/detail/show-youtube-comments-whi/gonknbphdaoahjnamfjpaincammofgae |
简介 | Show YouTube comments on the right of the video. Read comments while you watch! |
文件大小 | 7.54 KB |
安装次数 | 13,391 |
当前版本 | 1.0.4 |
更新时间 | 2022-08-03 |
上架时间 | 2019-04-06 |
评分 | 4.48/5 共91次评分 |
开发者 | Tanguy Kurylo |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/tanguykurylo/show-youtube-comments |
支持的语言 | 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" } } |