Movie Night
An extension to sync your video with friends!
Τι είναι το Movie Night;
Το Movie Night είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον eight.bit.operators, και η κύρια λειτουργία του είναι "An extension to sync your video with friends!".
Λήψη αρχείου CRX της επέκτασης Movie Night
Λήψη αρχείων επέκτασης Movie Night σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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!
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | dfcgmegoaakmgijfjeggbnhlahlkbdff |
Επίσημο URL | https://chrome.google.com/webstore/detail/movie-night/dfcgmegoaakmgijfjeggbnhlahlkbdff |
Περιγραφή | An extension to sync your video with friends! |
Μέγεθος Αρχείου | 101 KB |
Αριθμός Εγκαταστάσεων | 15 |
Τρέχουσα Έκδοση | 1.0 |
Τελευταία Ενημέρωση | 2018-06-08 |
Ημερομηνία Δημοσίευσης | 2018-06-06 |
Προγραμματιστής | eight.bit.operators |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | 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 } |