Coplay-forked
Synchronize online video playing between peers.
Coplay-forkedคืออะไร?
Coplay-forked เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Michael W. และคุณลักษณะหลักของมันคือ "Synchronize online video playing between peers."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Coplay-forked
ดาวน์โหลดไฟล์ส่วนขยาย Coplay-forked ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Coplay connects two users who are on the same video site and let them control both video players simultaneously. Coplay works on Youku, Tudou, YouTube, AcFun, bilibili, and more. Refer to https://github.com/hwang381/coplay#introduction for the full list of supported video sites. This is a forked version of the original by @Justineo https://github.com/Justineo/coplay. Go to https://github.com/hwang381/coplay#introduction for a list of improvements over the original version.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Coplay-forked |
ID | bfepakbebcfknkdehfflhhbigbaokfkl |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/coplay-forked/bfepakbebcfknkdehfflhhbigbaokfkl |
คำอธิบาย | Synchronize online video playing between peers. |
ขนาดไฟล์ | 85.47 KB |
จำนวนการติดตั้ง | 298 |
เวอร์ชันปัจจุบัน | 0.6.1 |
อัปเดตครั้งล่าสุด | 2021-02-10 |
วันที่เผยแพร่ | 2021-01-28 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | Michael W. |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Coplay-forked", "description": "Synchronize online video playing between peers.", "version": "0.6.1", "icons": { "128": "coplay.png" }, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "http:\/\/*.youku.com\/*", "https:\/\/*.youku.com\/*", "http:\/\/*.sohu.com\/*", "https:\/\/*.sohu.com\/*", "http:\/\/*.tudou.com\/*", "https:\/\/*.tudou.com\/*", "http:\/\/*.qq.com\/*", "https:\/\/*.qq.com\/*", "http:\/\/*.iqiyi.com\/*", "https:\/\/*.iqiyi.com\/*", "http:\/\/*.youtube.com\/*", "https:\/\/*.youtube.com\/*", "http:\/\/*.acfun.cn\/*", "https:\/\/*.acfun.cn\/*", "http:\/\/*.bilibili.com\/*", "https:\/\/*.bilibili.com\/*", "http:\/\/*.mgtv.com\/*", "https:\/\/*.mgtv.com\/*", "http:\/\/*.vimeo.com\/*", "https:\/\/*.vimeo.com\/*" ], "js": [ "inject.js" ] } ], "web_accessible_resources": [ "peer.js", "drag.js", "coplay.js", "coplay.css" ], "browser_action": { "default_icon": { "128": "coplay.png" } }, "options_ui": { "page": "options.html", "chrome_style": true } } |