ComOn com!
Show coms in YouTube videos in realtime by retrieving timestamps
ComOn com!คืออะไร?
ComOn com! เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://slals.io และคุณลักษณะหลักของมันคือ "Show coms in YouTube videos in realtime by retrieving timestamps"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ComOn com!
ดาวน์โหลดไฟล์ส่วนขยาย ComOn com! ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Show YouTube comments in the video while watching. It's a prototype, feel free to bring some ideas for this project here : https://github.com/Slaals/comoncom How to : - Install it, - Watch You Tube videos, - Enjoy Issue / Todo : - Doesn't work in full screen, - Doesn't have any waiting list, it only shows the first comments it found, - Only get 100 comments (API limitation).
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | ComOn com! |
ID | nfmkbcjacdnbdnedcbnmecdcedoijpna |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/comon-com/nfmkbcjacdnbdnedcbnmecdcedoijpna |
คำอธิบาย | Show coms in YouTube videos in realtime by retrieving timestamps |
ขนาดไฟล์ | 32.63 KB |
จำนวนการติดตั้ง | 46 |
เวอร์ชันปัจจุบัน | 1.3.3 |
อัปเดตครั้งล่าสุด | 2017-02-07 |
วันที่เผยแพร่ | 2017-02-07 |
คะแนน | 3.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | https://slals.io |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://www.youtube.com/watch?v=S_P2noWHyzo |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "ComOn com!", "description": "Show coms in YouTube videos in realtime by retrieving timestamps", "version": "1.3.3", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "browser_action": { "default_icon": "comon_on.png", "default_title": "Comon" }, "content_security_policy": "script-src 'self' https:\/\/apis.google.com; object-src 'self'", "background": { "scripts": [ "eventPage.js" ], "persistent": false }, "permissions": [ "tabs", "activeTab", "https:\/\/www.youtube.com\/watch*", "storage" ], "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "com.js" ], "css": [ "style.css" ], "run_at": "document_idle" } ] } |