YouTube Party

Watch videos together with friends on youtube!

Τι είναι το YouTube Party;

Το YouTube Party είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον http://labystudio.de, και η κύρια λειτουργία του είναι "Watch videos together with friends on youtube!".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης YouTube Party

Λήψη αρχείων επέκτασης YouTube Party σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        This chrome extension can sync youtube videos directly on the youtube page.

Warning: The addon is only a prototype. We want to see if it is worthwhile to publish such an addon in a large scale and to put more effort into it.

Quick tutorial:
- Install the addon
- Everyone who wants to join the party has to open a youtube video. (Doesn't matter which one, we just have to make sure that the youtube player is open)
- One person must generate a room code (Click on the addon icon in the top right corner to get the popup) and send it to everyone.
- Every other person has to join the same code as the first person in the addon-popup.
- Everyone should now see the member list in the top left corner of the video player.

Some issues:
- If the username or the profile picture is unknown, just scroll down to the comment section to reveal your account information for the addon. (This is just a workaround for the current prototype)
- If you can't join a room at all or can't see the member list then our server may be offline or broken. We are not planning to take the server offline as long as the addon is available in the chrome store!

It would be great if you could give us feedback on the entire idea of this addon!

Daniel
LabyMedia GmbH
https://labystudio.de                    

Βασικές Πληροφορίες Επέκτασης

Όνομα YouTube Party YouTube Party
ID amkbcoofeneackajigipeenoffcdlfbb
Επίσημο URL https://chrome.google.com/webstore/detail/youtube-party/amkbcoofeneackajigipeenoffcdlfbb
Περιγραφή Watch videos together with friends on youtube!
Μέγεθος Αρχείου 71.29 KB
Αριθμός Εγκαταστάσεων 50,000
Τρέχουσα Έκδοση 0.4
Τελευταία Ενημέρωση 2020-04-14
Ημερομηνία Δημοσίευσης 2020-04-09
Αξιολόγηση 1.91/5 Συνολικά 117 Αξιολογήσεις
Προγραμματιστής http://labystudio.de
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://labystudio.de
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Party",
    "description": "Watch videos together with friends on youtube!",
    "short_name": "YTParty",
    "manifest_version": 2,
    "version": "0.4",
    "icons": {
        "16": "icon\/icon16.png",
        "48": "icon\/icon164.png",
        "128": "icon\/icon164.png",
        "164": "icon\/icon164.png"
    },
    "permissions": [
        "activeTab",
        "declarativeContent",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*",
                "https:\/\/youtube.com\/*"
            ],
            "js": [
                "js\/socket.io.js",
                "js\/Map.js",
                "js\/youtubeparty.js"
            ],
            "css": [
                "css\/youtubeparty.css"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_icon": {
            "16": "icon\/icon16.png",
            "164": "icon\/icon164.png"
        },
        "default_title": "YouTube Party",
        "default_popup": "html\/popup.html"
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'"
}