Set Discord Activity
Set "Playing", "Streaming", "Listening to" & "Watching" in Discord to whatever you want.
ما هو Set Discord Activity؟
Set Discord Activity هو إضافة Chrome تم تطويرها بواسطة Hell.sh، والميزة الرئيسية لها هي "Set "Playing", "Streaming", "Listening to" & "Watching" in Discord to whatever you want.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Set Discord Activity
قم بتنزيل ملفات الامتداد Set Discord Activity بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
It even has a YouTube, Plex, and SoundCloud integration, so you can automatically share what you're watching/listening to on those platforms.
معلومات أساسية عن التمديد
الاسم | Set Discord Activity |
ID | dlmmhgaeahcfkojednnfghfpinbinicj |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/set-discord-activity/dlmmhgaeahcfkojednnfghfpinbinicj |
الوصف | Set "Playing", "Streaming", "Listening to" & "Watching" in Discord to whatever you want. |
حجم الملف | 24.75 KB |
عدد التثبيتات | 26,546 |
النسخة الحالية | 2.10.0 |
آخر تحديث | 2021-07-02 |
تاريخ النشر | 2020-05-05 |
تقييم | 3.70/5 مجموع تقييمات 225 |
المطور | Hell.sh |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/Sainan/Set-Discord-Activity |
عنوان صفحة المساعدة | https://github.com/Sainan/Set-Discord-Activity/issues |
عنوان صفحة سياسة الخصوصية | https://hell.sh/privacy |
اللغات المدعومة | 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" } ] } |