Movie Night
An extension to sync your video with friends!
什么是Movie Night?
Movie Night是由eight.bit.operators开发的Chrome扩展程序,该扩展的主要功能是“An extension to sync your video with friends!”。
下载Movie Night扩展crx文件
下载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 } |