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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
이메일 | [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" ] } |