YouTubeDiscordPresence

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

什麼是YouTubeDiscordPresence?

YouTubeDiscordPresence是由XFG16開發的Chrome擴展程式,該擴展的主要功能是“An extension used to create a detailed rich presence for YouTube videos on Discord.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載YouTubeDiscordPresence擴展crx文件

下載YouTubeDiscordPresence擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    }
}