YouTubeDiscordPresence

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

YouTubeDiscordPresence क्या है?

YouTubeDiscordPresence XFG16 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "An extension used to create a detailed rich presence for YouTube videos on Discord."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में YouTubeDiscordPresence एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम YouTubeDiscordPresence YouTubeDiscordPresence
ID hnmeidgkfcbpjjjpmjmpehjdljlaeaaa
आधिकारिक URL https://chromewebstore.google.com/detail/youtubediscordpresence/hnmeidgkfcbpjjjpmjmpehjdljlaeaaa
विवरण An extension used to create a detailed rich presence for YouTube videos on Discord.
फ़ाइल का आकार 103 KB
स्थापना संख्या 3,084
वर्तमान संस्करण 1.5.7
अंतिम अपडेट 2023-11-20
प्रकाशन तिथि 2022-05-31
रेटिंग 4.61/5 कुल 33 रेटिंग्स
डेवलपर XFG16
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/XFG16/YouTubeDiscordPresence
सहायता पृष्ठ URL https://github.com/XFG16/YouTubeDiscordPresence
समर्थित भाषाएँ 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"
    }
}