Netflix Sync Party

Watch Netflix with friends - no ads, no queues, no login, no lag.

Τι είναι το Netflix Sync Party;

Το Netflix Sync Party είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Netflix Sync Party, και η κύρια λειτουργία του είναι "Watch Netflix with friends - no ads, no queues, no login, no lag.".

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

screenshot
screenshot

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

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

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

                        Schedule watch parties on Netflix with the press of a button! Share the link with your friends for synced Netflix videos.

No ads, no queues, no login, and no lag.
Completely secure, free, and open source.

We avoid lag and capacity issues since our solution doesn't provide text or video chat - we recommend using another app to do this since there's a good chance you're doing so anyway.

For best results, make sure you and everyone else in the party has the time and time zone on their computer set as accurately as possible. The best way to do this is to go to settings and allow your computer to set it automatically.


Link to source code: github.com/debkbanerji/netflix-sync-party
Made with ❤️ by Deb and Mihir


FAQ

# Do you support chat?

The extension doesn't support video or text chat, since external services almost certainly do that better, and you'll probably have a chat that you use to plan your party anyway.

# Do you support syncing across multiple episodes?

We currently don't support syncing across multiple episodes, but you can easily generate a new link once the new episode starts.

# Do you support synced seeking?

We don't support synced seeking in order to avoid security issues such as those that crop up with similar extensions (third parties hijacking your stream). If there is enough demand, we can implement a workaround in the future to choose the point in the video to start at. In the meantime, we recommend you look at other solutions. 

# Why did you make this?

We made this for our friends, since other solutions were kind of unreliable when we tried them, and they wanted something simple and stable that could sync our movies during a call.                    

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

Όνομα Netflix Sync Party Netflix Sync Party
ID iglgjeoppncgpbbaildpifdnncgbpofl
Επίσημο URL https://chromewebstore.google.com/detail/netflix-sync-party/iglgjeoppncgpbbaildpifdnncgbpofl
Περιγραφή Watch Netflix with friends - no ads, no queues, no login, no lag.
Μέγεθος Αρχείου 18.55 KB
Αριθμός Εγκαταστάσεων 56,423
Τρέχουσα Έκδοση 2022.1.2
Τελευταία Ενημέρωση 2022-01-02
Ημερομηνία Δημοσίευσης 2020-07-01
Αξιολόγηση 4.25/5 Συνολικά 16 Αξιολογήσεις
Προγραμματιστής Netflix Sync Party
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/debkbanerji/netflix-sync-party
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/debkbanerji/netflix-sync-party/issues
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Netflix Sync Party",
    "version": "2022.1.2",
    "description": "Watch Netflix with friends - no ads, no queues, no login, no lag.",
    "permissions": [
        "declarativeContent",
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.netflix.com\/*",
                "https:\/\/*.netflix.com\/*"
            ],
            "js": [
                "netflix-page-code.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/icons\/icon16.png",
            "32": "images\/icons\/icon32.png",
            "48": "images\/icons\/icon48.png",
            "128": "images\/icons\/icon128.png"
        }
    },
    "icons": {
        "16": "images\/icons\/icon16.png",
        "32": "images\/icons\/icon32.png",
        "48": "images\/icons\/icon48.png",
        "128": "images\/icons\/icon128.png"
    },
    "manifest_version": 2
}