Watch In Sync

Watch movies with your friends synchronously!

Что такое Watch In Sync?

Watch In Sync - это расширение Chrome, разработанное ozanbaskan7, и его основная функция - "Watch movies with your friends synchronously!".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Watch In Sync

Скачайте файлы расширений 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
        }
    ]
}