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文件

下載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 Coplay-forked
ID bfepakbebcfknkdehfflhhbigbaokfkl
官方網址 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
    }
}