Coplay-forked
Synchronize online video playing between peers.
What is Coplay-forked?
Coplay-forked is a Chrome extension developed by Michael W., and its main feature is "Synchronize online video playing between peers.".
Extension Screenshots
Download Coplay-forked Extension CRX File
Download Coplay-forked extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Coplay-forked |
ID | bfepakbebcfknkdehfflhhbigbaokfkl |
Official URL | https://chromewebstore.google.com/detail/coplay-forked/bfepakbebcfknkdehfflhhbigbaokfkl |
Description | Synchronize online video playing between peers. |
File Size | 85.47 KB |
Installation Count | 298 |
Current Version | 0.6.1 |
Last Updated | 2021-02-10 |
Publish Date | 2021-01-28 |
Rating | 5.00/5 Total 1 Ratings |
Developer | Michael W. |
[email protected] | |
Payment Type | free |
Supported Languages | 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 } } |