Set Discord Activity
Set "Playing", "Streaming", "Listening to" & "Watching" in Discord to whatever you want.
Set Discord Activity là gì?
Set Discord Activity là một tiện ích mở rộng Chrome được phát triển bởi Hell.sh, và tính năng chính của nó là "Set "Playing", "Streaming", "Listening to" & "Watching" in Discord to whatever you want.".
Ả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 Set Discord Activity
Tải xuống các tệp mở rộng Set Discord Activity 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
It even has a YouTube, Plex, and SoundCloud integration, so you can automatically share what you're watching/listening to on those platforms.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Set Discord Activity |
ID | dlmmhgaeahcfkojednnfghfpinbinicj |
URL Chính Thức | https://chromewebstore.google.com/detail/set-discord-activity/dlmmhgaeahcfkojednnfghfpinbinicj |
Mô tả | Set "Playing", "Streaming", "Listening to" & "Watching" in Discord to whatever you want. |
Kích Thước Tệp | 24.75 KB |
Số Lần Cài Đặt | 26,546 |
Phiên Bản Hiện Tại | 2.10.0 |
Cập Nhật Lần Cuối | 2021-07-02 |
Ngày Phát Hành | 2020-05-05 |
Đánh Giá | 3.70/5 Tổng số 225 Đánh Giá |
Nhà Phát Triển | Hell.sh |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/Sainan/Set-Discord-Activity |
URL Trang Trợ Giúp | https://github.com/Sainan/Set-Discord-Activity/issues |
URL Trang Chính Sách Bảo Mật | https://hell.sh/privacy |
Ngôn Ngữ Được Hỗ Trợ | de,en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "default_locale": "en", "name": "__MSG_appName__", "description": "__MSG_appDesc__", "icons": { "128": "icon.png" }, "version": "2.10.0", "author": "Sainan", "minimum_chrome_version": "41", "permissions": [ "storage" ], "browser_action": { "default_popup": "popup.html" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/discord.com\/channels\/*", "https:\/\/ptb.discord.com\/channels\/*", "https:\/\/canary.discord.com\/channels\/*" ], "all_frames": true, "js": [ "discord.js" ], "run_at": "document_start" }, { "matches": [ "https:\/\/www.youtube.com\/*" ], "all_frames": true, "js": [ "youtube.js", "content_script.js" ], "run_at": "document_idle" }, { "matches": [ "https:\/\/music.youtube.com\/*" ], "all_frames": true, "js": [ "youtubemusic.js", "content_script.js" ], "run_at": "document_idle" }, { "matches": [ "https:\/\/soundcloud.com\/*" ], "all_frames": true, "js": [ "soundcloud.js", "content_script.js" ], "run_at": "document_idle" }, { "matches": [ "https:\/\/app.plex.tv\/desktop", "https:\/\/app.plex.tv\/desktop\/*" ], "all_frames": true, "js": [ "plex.js", "content_script.js" ], "run_at": "document_idle" } ] } |