Movie Date

Syncs videos for people watching the same video at the same time.

¿Qué es Movie Date?

Movie Date es una extensión de Chrome desarrollada por dcep93.apps, y su función principal es "Syncs videos for people watching the same video at the same time.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Movie Date

Descarga archivos de extensión Movie Date en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        Users should open the same video on the same service (youtube, netflix, or local file), then click the "Movie Date" icon to begin a session. Your peers' progress should be displayed, and you can sync your own progress to match you peer!                    

Información Básica de la Extensión

Nombre Movie Date Movie Date
ID iofdkijmnaoabjndjbichhbllhbbkbde
URL Oficial https://chromewebstore.google.com/detail/movie-date/iofdkijmnaoabjndjbichhbllhbbkbde
Descripción Syncs videos for people watching the same video at the same time.
Tamaño del Archivo 124 KB
Cantidad de Instalaciones 13
Versión Actual 5.0.0
Última Actualización 2020-05-26
Fecha de Publicación 2020-05-26
Desarrollador dcep93.apps
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Movie Date",
    "description": "Syncs videos for people watching the same video at the same time.",
    "version": "5.0.0",
    "icons": {
        "16": "moviedate.png",
        "48": "moviedate.png",
        "128": "moviedate_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.dropbox.com\/*",
                "https:\/\/www.youtube.com\/*",
                "https:\/\/www.netflix.com\/*",
                "http:\/\/www.vh1.com\/*",
                "https:\/\/www.vh1.com\/*",
                "http:\/\/dcep93.github.io\/",
                "https:\/\/dcep93.github.io\/",
                "file:\/\/\/*"
            ],
            "js": [
                "content_script.js",
                "content_script_subtitle_parser.js",
                "content_script_firebase.js",
                "content_script_inject.js",
                "determine_time.js",
                "firebase\/firebase-app.js",
                "firebase\/firebase-database.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "moviedate.png"
    },
    "web_accessible_resources": [
        "inject_netflix.js"
    ],
    "permissions": [
        "identity",
        "identity.email"
    ],
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' https:\/\/*.firebaseio.com; object-src 'self'"
}