Movie Night
An extension to sync your video with friends!
O que é Movie Night?
Movie Night é uma extensão do Chrome desenvolvida por eight.bit.operators, e sua principal característica é "An extension to sync your video with friends!".
Baixar o arquivo CRX da Extensão Movie Night
Baixe arquivos de extensão Movie Night 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
MovieNight allows you to share your Netflix experience with friends and family! By using your unique code, others can join you at the exact same show and time that you're currently watching. We currently support syncing the show and time that you are watching, but more updates are on the way very soon!
Informações Básicas da Extensão
Nome | |
ID | dfcgmegoaakmgijfjeggbnhlahlkbdff |
URL Oficial | https://chrome.google.com/webstore/detail/movie-night/dfcgmegoaakmgijfjeggbnhlahlkbdff |
Descrição | An extension to sync your video with friends! |
Tamanho do Arquivo | 101 KB |
Contagem de Instalações | 15 |
Versão Atual | 1.0 |
Última Atualização | 2018-06-08 |
Data de Publicação | 2018-06-06 |
Desenvolvedor | eight.bit.operators |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Movie Night", "version": "1.0", "description": "An extension to sync your video with friends!", "permissions": [ "tabs", "declarativeContent", "storage", "http:\/\/*\/", "https:\/\/*\/" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "page_action": { "default_popup": "popup.html", "default_icon": { "16": "\/ExtensionButton16.png", "32": "\/ExtensionButton16.png", "48": "\/ExtensionButton48.png", "128": "\/ExtensionButton128.png" } }, "icons": { "16": "\/ExtensionButton16.png", "32": "\/ExtensionButton16.png", "48": "\/ExtensionButton48.png", "128": "\/ExtensionButton128.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.netflix.com\/*" ], "run_at": "document_idle", "js": [ "firebase-app.js", "firebase-database.js", "seek.min.js" ] } ], "content_security_policy": "script-src 'self' https:\/\/www.gstatic.com\/ https:\/\/*.firebaseio.com https:\/\/www.googleapis.com; object-src 'self'", "manifest_version": 2 } |