Hulu With Me
Watch your favorite shows with your favorite people.
Hulu With Meとは何ですか?
Hulu With Meはhttp://huluwith.meによって開発されたChromeの拡張機能で、その主な機能は「Watch your favorite shows with your favorite people.」です。
拡張機能のスクリーンショット
Hulu With Me拡張機能のCRXファイルをダウンロード
Hulu With Me拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Don't let distance keep you from watching your favorite shows with your favorite people. Huluwithme keeps your video in sync across multiple computers, so you can chat and watch together. Install the add-on, find a video on Hulu.com, and click the "Huluwithme" link below the video. When you pause, it'll pause for her. When he plays, it plays for you. You can also chat while you watch the show. (Works with Firefox and Chrome. Not affiliated with Hulu.)
拡張機能の基本情報
名前 | |
ID | kadfigclkmmnpchmalpbcfbmpnmmmoag |
公式URL | https://chrome.google.com/webstore/detail/hulu-with-me/kadfigclkmmnpchmalpbcfbmpnmmmoag |
説明 | Watch your favorite shows with your favorite people. |
ファイルサイズ | 136 KB |
インストール数 | 5,000 |
現在のバージョン | 8.5 |
最終更新日 | 2012-07-02 |
公開日 | 2012-07-02 |
評価 | 1.67/5 合計 6 レビュー |
開発者 | http://huluwith.me |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | http://huluwith.me |
プライバシーポリシーページのURL | https://readme.com/privacy |
対応言語 | en |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "name": "Hulu With Me", "version": "8.5", "manifest_version": 2, "description": "Watch your favorite shows with your favorite people.", "homepage_url": "http:\/\/huluwith.me", "permissions": [ "webRequest", "tabs", "notifications", "http:\/\/huluwith.me", "http:\/\/*.hulu.com\/" ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "background": { "scripts": [ "background.js" ] }, "minimum_chrome_version": "18", "content_scripts": [ { "matches": [ "*:\/\/huluwith.me\/*" ], "js": [ "check.js" ], "run_at": "document_end" }, { "matches": [ "http:\/\/www.hulu.com\/watch\/*" ], "js": [ "room-loader.js" ], "css": [ "style.css" ] } ], "web_accessible_resources": [ "jquery.js", "socket.io.js", "room.js", "imgs\/notification.png", "imgs\/notification-chat.png", "imgs\/notification-pause.png", "imgs\/notification-play.png", "imgs\/notification-seek_forward.png", "imgs\/notification-seek_back.png", "imgs\/notification-commercial.png" ] } |