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 |
官方網址 | 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 |
電子郵箱 | [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" ] } |