Coplay-forked
Synchronize online video playing between peers.
O que é Coplay-forked?
Coplay-forked é uma extensão do Chrome desenvolvida por Michael W., e sua principal característica é "Synchronize online video playing between peers.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Coplay-forked
Baixe arquivos de extensão Coplay-forked no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Coplay-forked |
ID | bfepakbebcfknkdehfflhhbigbaokfkl |
URL Oficial | https://chromewebstore.google.com/detail/coplay-forked/bfepakbebcfknkdehfflhhbigbaokfkl |
Descrição | Synchronize online video playing between peers. |
Tamanho do Arquivo | 85.47 KB |
Contagem de Instalações | 298 |
Versão Atual | 0.6.1 |
Última Atualização | 2021-02-10 |
Data de Publicação | 2021-01-28 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | Michael W. |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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 } } |