Hulu With Me

Watch your favorite shows with your favorite people.

Cos'è Hulu With Me?

Hulu With Me è un'estensione di Chrome sviluppata da http://huluwith.me, e la sua funzione principale è "Watch your favorite shows with your favorite people.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Hulu With Me

Scarica i file di estensione Hulu With Me in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Hulu With Me Hulu With Me
ID kadfigclkmmnpchmalpbcfbmpnmmmoag
URL Ufficiale https://chrome.google.com/webstore/detail/hulu-with-me/kadfigclkmmnpchmalpbcfbmpnmmmoag
Descrizione Watch your favorite shows with your favorite people.
Dimensione del File 136 KB
Conteggio Installazioni 5,000
Versione Corrente 8.5
Ultimo Aggiornamento 2012-07-02
Data di Pubblicazione 2012-07-02
Valutazione 1.67/5 Totale 6 Valutazioni
Sviluppatore http://huluwith.me
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione http://huluwith.me
URL della Pagina della Politica sulla Privacy https://readme.com/privacy
Lingue Supportate 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"
    ]
}