Youtube Connect
Control Youtube with other devices.
Qu'est-ce que Youtube Connect ?
Youtube Connect est une extension Chrome développée par Ameya Thakur, et sa fonction principale est "Control Youtube with other devices.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Youtube Connect
Téléchargez les fichiers d'extension Youtube Connect au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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).
Informations de Base sur l'Extension
Nom | |
ID | lgfgmmnhfecoppibekiekkhncickeoki |
URL Officiel | https://chrome.google.com/webstore/detail/youtube-connect/lgfgmmnhfecoppibekiekkhncickeoki |
Description | Control Youtube with other devices. |
Taille du Fichier | 21.96 KB |
Nombre d'Installations | 28 |
Version Actuelle | 0.1.2 |
Dernière Mise à Jour | 2021-01-22 |
Date de Publication | 2020-07-22 |
Développeur | Ameya Thakur |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://youtubeconnect.ameyathakur.com |
Langues Prises en Charge | 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\/*" ] } |