Synctastic

Watch any video together anywhere!

Τι είναι το Synctastic;

Το Synctastic είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Ddone, και η κύρια λειτουργία του είναι "Watch any video together anywhere!".

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

screenshot
screenshot

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

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

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

                        With this plugin you can watch any video on any website together with your friends!

Synctastic helps you to watch videos with your online friends. You will no longer need to manually sync your videos. This is especially helpful if some people in your group have slow internet or need frequent pauses. It inspired by SyncTube, but designed to work not only on YouTube but on every website that has a video in it.

*** How it works?
You choose one person as a room host(his/her name would be green). The host then plays some video. Plugin detects it and starts to broadcast the state of the video to everyone in the room. If another person in the room has the same video opened, it will start to follow the host's state. 

*** User guide
Person 1
    1. Install the plugin
    2. Create room
    3. Start video in the browser
    4. Wait for another person to join your room
    5. Enjoy synchronized watch experience

Person 2

    1. Install the plugin
    2. Join the room
    3. Navigate to the page containing the video
    4. Enjoy synchronized watch experience

*** Privacy notice

We promise not to store any of your data. If you don't trust us you can build and host your own server from sources.

***
https://github.com/Deedone/Synctastic - Source code
https://forms.gle/2LRe3wdofcz59b8q8 - Report bugs                    

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

Όνομα Synctastic Synctastic
ID plfcncjpajilfjlialnfdpbcklahnlbc
Επίσημο URL https://chromewebstore.google.com/detail/synctastic/plfcncjpajilfjlialnfdpbcklahnlbc
Περιγραφή Watch any video together anywhere!
Μέγεθος Αρχείου 363 KB
Αριθμός Εγκαταστάσεων 55
Τρέχουσα Έκδοση 1.0.3.3
Τελευταία Ενημέρωση 2020-10-14
Ημερομηνία Δημοσίευσης 2020-07-06
Αξιολόγηση 5.00/5 Συνολικά 3 Αξιολογήσεις
Προγραμματιστής Ddone
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/Deedone/Synctastic
URL της Σελίδας Πολιτικής Απορρήτου https://github.com/Deedone/Synctastic/wiki/Privacy-policy
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Synctastic",
    "version": "1.0.3.3",
    "description": "Watch any video together anywhere!",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "dist\/background.js"
        ]
    },
    "permissions": [
        "webNavigation",
        "storage",
        "notifications"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "all_frames": true,
            "css": [
                "content.css"
            ],
            "js": [
                "dist\/content.js"
            ]
        }
    ],
    "icons": {
        "128": "images\/logo3128.png"
    },
    "browser_action": {
        "default_popup": "popup\/dist\/index.html",
        "default_title": "Synctastic",
        "default_icon": {
            "128": "images\/logo3128.png"
        }
    }
}