Hulu With Me

Watch your favorite shows with your favorite people.

Vad är Hulu With Me?

Hulu With Me är en Chrome-tillägg utvecklad av http://huluwith.me, och dess huvudfunktion är "Watch your favorite shows with your favorite people.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Hulu With Me-förlängningens CRX-fil

Ladda ner Hulu With Me-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn Hulu With Me Hulu With Me
ID kadfigclkmmnpchmalpbcfbmpnmmmoag
Officiell webbadress https://chrome.google.com/webstore/detail/hulu-with-me/kadfigclkmmnpchmalpbcfbmpnmmmoag
Beskrivning Watch your favorite shows with your favorite people.
Filstorlek 136 KB
Antal Installationer 5,000
Aktuell Version 8.5
Senast Uppdaterad 2012-07-02
Publiceringsdatum 2012-07-02
Betyg 1.67/5 Totalt 6 Betyg
Utvecklare http://huluwith.me
E-post [email protected]
Betalningssätt free
Tilläggswebbplats http://huluwith.me
URL till Sekretesspolicy Sidan https://readme.com/privacy
Stödda Språk 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"
    ]
}