Coplay-forked

Synchronize online video playing between peers.

Coplay-forked란 무엇입니까?

Coplay-forked은(는) Michael W.에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Synchronize online video playing between peers."입니다.

확장 프로그램 스크린샷

screenshot

Coplay-forked 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 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
    }
}