YouTubeDiscordPresence

An extension used to create a detailed rich presence for YouTube videos on Discord.

Cos'è YouTubeDiscordPresence?

YouTubeDiscordPresence è un'estensione di Chrome sviluppata da XFG16, e la sua funzione principale è "An extension used to create a detailed rich presence for YouTube videos on Discord.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione YouTubeDiscordPresence

Scarica i file di estensione YouTubeDiscordPresence in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome YouTubeDiscordPresence YouTubeDiscordPresence
ID hnmeidgkfcbpjjjpmjmpehjdljlaeaaa
URL Ufficiale https://chromewebstore.google.com/detail/youtubediscordpresence/hnmeidgkfcbpjjjpmjmpehjdljlaeaaa
Descrizione An extension used to create a detailed rich presence for YouTube videos on Discord.
Dimensione del File 103 KB
Conteggio Installazioni 3,084
Versione Corrente 1.5.7
Ultimo Aggiornamento 2023-11-20
Data di Pubblicazione 2022-05-31
Valutazione 4.61/5 Totale 33 Valutazioni
Sviluppatore XFG16
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/XFG16/YouTubeDiscordPresence
URL della Pagina di Aiuto https://github.com/XFG16/YouTubeDiscordPresence
Lingue Supportate 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"
    }
}