Watch In Sync

Watch movies with your friends synchronously!

O que é Watch In Sync?

Watch In Sync é uma extensão do Chrome desenvolvida por ozanbaskan7, e sua principal característica é "Watch movies with your friends synchronously!".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Watch In Sync

Baixe arquivos de extensão Watch In Sync 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

                        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.                    

Informações Básicas da Extensão

Nome Watch In Sync Watch In Sync
ID cbcplomcajikifbdopphkbhpkciokcmo
URL Oficial https://chromewebstore.google.com/detail/watch-in-sync/cbcplomcajikifbdopphkbhpkciokcmo
Descrição Watch movies with your friends synchronously!
Tamanho do Arquivo 32.25 KB
Contagem de Instalações 25
Versão Atual 0.1
Última Atualização 2021-11-01
Data de Publicação 2021-10-31
Classificação 5.00/5 Total de 3 Avaliações
Desenvolvedor ozanbaskan7
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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
        }
    ]
}