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 |
Eメール | [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" } } |