YouTubeDiscordPresence

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

YouTubeDiscordPresenceคืออะไร?

YouTubeDiscordPresence เป็นส่วนขยายของ Chrome ที่พัฒนาโดย XFG16 และคุณลักษณะหลักของมันคือ "An extension used to create a detailed rich presence for YouTube videos on Discord."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YouTubeDiscordPresence

ดาวน์โหลดไฟล์ส่วนขยาย 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
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"
    }
}