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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    }
}