Watch In Sync

Watch movies with your friends synchronously!

什么是Watch In Sync?

Watch In Sync是由ozanbaskan7开发的Chrome扩展程序,该扩展的主要功能是“Watch movies with your friends synchronously!”。

扩展截图

screenshot

下载Watch In Sync扩展crx文件

下载Watch In Sync扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        You can watch movies on every page you want with your friends synchronously using this extension! 

Just download the extension with your friends, connect to the same session and go to the web page you want to watch a movie. Click the video frame you want to watch in sync, after clicking when red the frame around the video disappears the sync is on! You can pause and play the video and watch with your friends at the same time.                    

扩展基本信息

名称 Watch In Sync Watch In Sync
ID cbcplomcajikifbdopphkbhpkciokcmo
官方URL https://chromewebstore.google.com/detail/watch-in-sync/cbcplomcajikifbdopphkbhpkciokcmo
简介 Watch movies with your friends synchronously!
文件大小 32.25 KB
安装次数 25
当前版本 0.1
更新时间 2021-11-01
上架时间 2021-10-31
评分 5.00/5 共3次评分
开发者 ozanbaskan7
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Watch In Sync",
    "description": "Watch movies with your friends synchronously!",
    "version": "0.1",
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/16.png",
            "32": "\/images\/32.png",
            "48": "\/images\/48.png",
            "128": "\/images\/128.png"
        }
    },
    "icons": {
        "16": "\/images\/16.png",
        "32": "\/images\/32.png",
        "48": "\/images\/48.png",
        "128": "\/images\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "main.js"
            ],
            "all_frames": true,
            "match_about_blank": true
        }
    ]
}