Watch In Sync
Watch movies with your friends synchronously!
Was ist Watch In Sync?
Watch In Sync ist eine Chrome-Erweiterung, die von ozanbaskan7 entwickelt wurde, und ihr Hauptmerkmal ist "Watch movies with your friends synchronously!".
Erweiterungsscreenshots
Watch In Sync-Erweiterungs-CRX-Datei herunterladen
Laden Sie Watch In Sync-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
You can watch movies on every page you want with your friends synchronously using this extension! Just download the extension with your friends, connect to the same session and go to the web page you want to watch a movie. Click the video frame you want to watch in sync, after clicking when red the frame around the video disappears the sync is on! You can pause and play the video and watch with your friends at the same time.
Grundlegende Informationen zur Erweiterung
Name | Watch In Sync |
ID | cbcplomcajikifbdopphkbhpkciokcmo |
Offizielle URL | https://chromewebstore.google.com/detail/watch-in-sync/cbcplomcajikifbdopphkbhpkciokcmo |
Beschreibung | Watch movies with your friends synchronously! |
Dateigröße | 32.25 KB |
Installationsanzahl | 25 |
Aktuelle Version | 0.1 |
Letztes Update | 2021-11-01 |
Veröffentlichungsdatum | 2021-10-31 |
Bewertung | 5.00/5 Insgesamt 3 Bewertungen |
Entwickler | ozanbaskan7 |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Watch In Sync", "description": "Watch movies with your friends synchronously!", "version": "0.1", "manifest_version": 3, "permissions": [ "storage" ], "action": { "default_popup": "popup.html", "default_icon": { "16": "\/images\/16.png", "32": "\/images\/32.png", "48": "\/images\/48.png", "128": "\/images\/128.png" } }, "icons": { "16": "\/images\/16.png", "32": "\/images\/32.png", "48": "\/images\/48.png", "128": "\/images\/128.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "main.js" ], "all_frames": true, "match_about_blank": true } ] } |