Hulu With Me

Watch your favorite shows with your favorite people.

Hulu With Me là gì?

Hulu With Me là một tiện ích mở rộng Chrome được phát triển bởi http://huluwith.me, và tính năng chính của nó là "Watch your favorite shows with your favorite people.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Hulu With Me

Tải xuống các tệp mở rộng Hulu With Me dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.)                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Hulu With Me Hulu With Me
ID kadfigclkmmnpchmalpbcfbmpnmmmoag
URL Chính Thức https://chrome.google.com/webstore/detail/hulu-with-me/kadfigclkmmnpchmalpbcfbmpnmmmoag
Mô tả Watch your favorite shows with your favorite people.
Kích Thước Tệp 136 KB
Số Lần Cài Đặt 5,000
Phiên Bản Hiện Tại 8.5
Cập Nhật Lần Cuối 2012-07-02
Ngày Phát Hành 2012-07-02
Đánh Giá 1.67/5 Tổng số 6 Đánh Giá
Nhà Phát Triển http://huluwith.me
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://huluwith.me
URL Trang Chính Sách Bảo Mật https://readme.com/privacy
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}