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 |
Eメール | [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 } |