Hulu With Me
Watch your favorite shows with your favorite people.
Qu'est-ce que Hulu With Me ?
Hulu With Me est une extension Chrome développée par http://huluwith.me, et sa fonction principale est "Watch your favorite shows with your favorite people.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Hulu With Me
Téléchargez les fichiers d'extension Hulu With Me au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.)
Informations de Base sur l'Extension
Nom | |
ID | kadfigclkmmnpchmalpbcfbmpnmmmoag |
URL Officiel | https://chrome.google.com/webstore/detail/hulu-with-me/kadfigclkmmnpchmalpbcfbmpnmmmoag |
Description | Watch your favorite shows with your favorite people. |
Taille du Fichier | 136 KB |
Nombre d'Installations | 5,000 |
Version Actuelle | 8.5 |
Dernière Mise à Jour | 2012-07-02 |
Date de Publication | 2012-07-02 |
Évaluation | 1.67/5 Total 6 Évaluations |
Développeur | http://huluwith.me |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | http://huluwith.me |
URL de la Page de Politique de Confidentialité | https://readme.com/privacy |
Langues Prises en Charge | 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" ] } |