Youtube Connect
Control Youtube with other devices.
Youtube Connect क्या है?
Youtube Connect Ameya Thakur द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Control Youtube with other devices."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Youtube Connect एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Simply install the extension and open a Youtube video or playlist. A new button will be added to the settings bar of your video. Enable Youtube Connect and either scan the QR code or open the remote application and enter the 8 word mnemonic to connect to your session. This is a side project and is not perfect, but good enough for most use. Feel free to view the source and make contributions if you wish (or fork the project). If Youtube connect is not enabling in the player, it likely means that the API server has shut down. If that occurs and you need to continue using the extension, you may modify the extension to use an API server you run yourself (based on the available source code).
एक्सटेंशन की मूल जानकारी
नाम | |
ID | lgfgmmnhfecoppibekiekkhncickeoki |
आधिकारिक URL | https://chrome.google.com/webstore/detail/youtube-connect/lgfgmmnhfecoppibekiekkhncickeoki |
विवरण | Control Youtube with other devices. |
फ़ाइल का आकार | 21.96 KB |
स्थापना संख्या | 28 |
वर्तमान संस्करण | 0.1.2 |
अंतिम अपडेट | 2021-01-22 |
प्रकाशन तिथि | 2020-07-22 |
डेवलपर | Ameya Thakur |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://youtubeconnect.ameyathakur.com |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Youtube Connect", "version": "0.1.2", "author": "Ameya Thakur", "homepage_url": "https:\/\/youtubeconnect.ameyathakur.com", "description": "Control Youtube with other devices.", "content_security_policy": "default-src 'self'", "icons": { "48": "icons\/icon.png", "96": "icons\/[email protected]", "128": "icons\/packageicon128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "browser-polyfill.min.js", "wordlist.js", "ytconnect.js" ], "css": [ "styles.css" ] } ], "permissions": [ "storage", "https:\/\/api.youtubeconnect.ameyathakur.com\/*" ] } |