YouTubeDiscordPresence
An extension used to create a detailed rich presence for YouTube videos on Discord.
Qu'est-ce que YouTubeDiscordPresence ?
YouTubeDiscordPresence est une extension Chrome développée par XFG16, et sa fonction principale est "An extension used to create a detailed rich presence for YouTube videos on Discord.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension YouTubeDiscordPresence
Téléchargez les fichiers d'extension YouTubeDiscordPresence 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
Show your friends and others what you're watching on YouTube and YouTube Music! In order for YouTubeDiscordPresence to work, a second desktop application needs to be installed on your computer based on the GitHub instructions: https://github.com/XFG16/YouTubeDiscordPresence/tree/main#installation **The current version only supports the 64-bit version of Windows. YouTubeDiscordPresence does not support the browser version of Discord. Expect compatibility for other operating systems in the future.** YouTubeDiscordPresence works similar to the Spotify rich presence on Discord—it only appears when a video is playing and disappears when there is no video or the video is paused. Idling and searching are not displayed. Maximize your experience with YouTubeDiscordPresence by customizing your settings! To the settings page, click on the small YTDP icon on the top right of the browser under the extensions (puzzle piece) icon.
Informations de Base sur l'Extension
Nom | YouTubeDiscordPresence |
ID | hnmeidgkfcbpjjjpmjmpehjdljlaeaaa |
URL Officiel | https://chromewebstore.google.com/detail/youtubediscordpresence/hnmeidgkfcbpjjjpmjmpehjdljlaeaaa |
Description | An extension used to create a detailed rich presence for YouTube videos on Discord. |
Taille du Fichier | 103 KB |
Nombre d'Installations | 3,084 |
Version Actuelle | 1.5.7 |
Dernière Mise à Jour | 2023-11-20 |
Date de Publication | 2022-05-31 |
Évaluation | 4.61/5 Total 33 Évaluations |
Développeur | XFG16 |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/XFG16/YouTubeDiscordPresence |
URL de la Page d'Aide | https://github.com/XFG16/YouTubeDiscordPresence |
Langues Prises en Charge | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTubeDiscordPresence", "author": "Michael Ren", "description": "An extension used to create a detailed rich presence for YouTube videos on Discord.", "version": "1.5.7", "manifest_version": 3, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*", "https:\/\/music.youtube.com\/*" ], "js": [ "content_loader.js" ] } ], "background": { "service_worker": "background.js" }, "action": { "default_icon": "\/Images\/icon16.png", "default_popup": "popup.html" }, "web_accessible_resources": [ { "resources": [ "content.js", "warning.html" ], "matches": [ "https:\/\/www.youtube.com\/*", "https:\/\/music.youtube.com\/*" ] } ], "permissions": [ "nativeMessaging", "background", "storage", "tabs" ], "icons": { "16": "\/Images\/icon16.png", "48": "\/Images\/icon48.png", "128": "\/Images\/icon128.png" } } |