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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Tanguy Kurylo และคุณลักษณะหลักของมันคือ "Show YouTube comments on the right of the video. Read comments while you watch!"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Show YouTube comments while watching
ดาวน์โหลดไฟล์ส่วนขยาย 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" } } |