Comment Overlay
Read comments and watch Youtube videos at the same time.
Comment Overlayคืออะไร?
Comment Overlay เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "Read comments and watch Youtube videos at the same time."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Comment Overlay
ดาวน์โหลดไฟล์ส่วนขยาย Comment Overlay ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Comment Overlay allows you to read comments while watching YouTube videos. Comments are shown as an overlay on top the video. You can show/hide comments by clicking the extension button. Version 1.2 - Dark Mode added. Version 1.1: - Theater mode is now supported. Version 1.0: - Original release.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Comment Overlay |
ID | mjkhjmibjakfenpldlgjogpiebkjliec |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/comment-overlay/mjkhjmibjakfenpldlgjogpiebkjliec |
คำอธิบาย | Read comments and watch Youtube videos at the same time. |
ขนาดไฟล์ | 53.86 KB |
จำนวนการติดตั้ง | 251 |
เวอร์ชันปัจจุบัน | 1.2 |
อัปเดตครั้งล่าสุด | 2018-11-21 |
วันที่เผยแพร่ | 2018-11-20 |
คะแนน | 3.83/5 รวมทั้งหมด 6 คะแนน |
ผู้พัฒนา | Unknown |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Comment Overlay", "version": "1.2", "web_accessible_resources": [ "mypage.htm" ], "description": "Read comments and watch Youtube videos at the same time.", "permissions": [ "activeTab", "tabs" ], "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "exclude_globs": [], "include_globs": [ "https:\/\/www.youtube.com\/watch*?v=*", "https:\/\/www.youtube.com\/" ], "js": [ "jquery-3.3.1.min.js", "content.js", "popup.js" ], "matches": [ "https:\/\/www.youtube.com\/watch*", "https:\/\/www.youtube.com\/" ] } ], "browser_action": { "default_title": "Comment Overlay", "default_popup": "popup.html" }, "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "manifest_version": 2 } |