YouTube Party
YouTube party lets you sync your YouTube experience with friends. Watch, play and seek videos with friends over the internet.
YouTube Party क्या है?
YouTube Party WispyTech द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "YouTube party lets you sync your YouTube experience with friends. Watch, play and seek videos with friends over the internet."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में YouTube Party एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
YouTube party lets you sync your YouTube experience with friends. Watch, play and seek videos with friends over the internet. Watch YouTube Videos with your friends and family during quarantine! The steps are simple: * You and friends install the extension. * Press the extension's icon on the top right of your browser. * Start a session. * Give your friends the generated YouTube link. * Have them just navigate to the link in the browser. * Enjoy watching YouTube together! You like the extension? buy me a coffee (btw, you don't have to <3) - https://www.buymeacoffee.com/yezenalnafei ---- Release Notes: We always listen to your feedback and make it happen. v0.5.1: * Fixes an issue when YouTube redirects the url without party ID * Minor improvements v0.5.0: * Adds indicator to show if the YouTube party is on/active. * Minor improvements v0.4.0: * Redesigned layout * Minor improvements v0.3.0: * Only change the url when its a watch one. * Don't worry about not being in sync with friends when they seek due to slow/bad internet, now we put a mechanism to sync everybody at the same time. * Reduced package size.
एक्सटेंशन की मूल जानकारी
नाम | YouTube Party |
ID | pcdocoohpenibkkkfigkgelhpbeogimb |
आधिकारिक URL | https://chromewebstore.google.com/detail/youtube-party/pcdocoohpenibkkkfigkgelhpbeogimb |
विवरण | YouTube party lets you sync your YouTube experience with friends. Watch, play and seek videos with friends over the internet. |
फ़ाइल का आकार | 176 KB |
स्थापना संख्या | 10,012 |
वर्तमान संस्करण | 0.5.2 |
अंतिम अपडेट | 2021-07-09 |
प्रकाशन तिथि | 2020-06-23 |
रेटिंग | 4.06/5 कुल 32 रेटिंग्स |
डेवलपर | WispyTech |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://wispytech.com/youtube-party.html |
गोपनीयता नीति पृष्ठ URL | https://wispytech.com/privacy.html |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Party", "version": "0.5.2", "manifest_version": 2, "description": "YouTube party lets you sync your YouTube experience with friends. Watch, play and seek videos with friends over the internet.", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "browser_action": { "default_title": "YouTube Party", "default_popup": "popup.html" }, "default_locale": "en", "background": { "scripts": [ "js\/background.js" ], "persistent": true }, "permissions": [ "https:\/\/*.youtube.com\/*", "http:\/\/*.youtube.com\/*" ], "content_security_policy": "style-src 'self' 'unsafe-inline'", "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*", "http:\/\/*.youtube.com\/*" ], "js": [ "js\/content.js" ] } ] } |