Movie Night

An extension to sync your video with friends!

What is Movie Night?

Movie Night is a Chrome extension developed by eight.bit.operators, and its main feature is "An extension to sync your video with friends!".

Download Movie Night Extension CRX File

Download Movie Night extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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!                    

Extension Basic Information

Name Movie Night Movie Night
ID dfcgmegoaakmgijfjeggbnhlahlkbdff
Official URL https://chrome.google.com/webstore/detail/movie-night/dfcgmegoaakmgijfjeggbnhlahlkbdff
Description An extension to sync your video with friends!
File Size 101 KB
Installation Count 15
Current Version 1.0
Last Updated 2018-06-08
Publish Date 2018-06-06
Developer eight.bit.operators
Email [email protected]
Payment Type free
Supported Languages 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
}