YouTubeDiscordPresence
An extension used to create a detailed rich presence for YouTube videos on Discord.
YouTubeDiscordPresence là gì?
YouTubeDiscordPresence là một tiện ích mở rộng Chrome được phát triển bởi XFG16, và tính năng chính của nó là "An extension used to create a detailed rich presence for YouTube videos on Discord.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng YouTubeDiscordPresence
Tải xuống các tệp mở rộng YouTubeDiscordPresence dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | YouTubeDiscordPresence |
ID | hnmeidgkfcbpjjjpmjmpehjdljlaeaaa |
URL Chính Thức | https://chromewebstore.google.com/detail/youtubediscordpresence/hnmeidgkfcbpjjjpmjmpehjdljlaeaaa |
Mô tả | An extension used to create a detailed rich presence for YouTube videos on Discord. |
Kích Thước Tệp | 103 KB |
Số Lần Cài Đặt | 3,084 |
Phiên Bản Hiện Tại | 1.5.7 |
Cập Nhật Lần Cuối | 2023-11-20 |
Ngày Phát Hành | 2022-05-31 |
Đánh Giá | 4.61/5 Tổng số 33 Đánh Giá |
Nhà Phát Triển | XFG16 |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/XFG16/YouTubeDiscordPresence |
URL Trang Trợ Giúp | https://github.com/XFG16/YouTubeDiscordPresence |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |