Set Discord Activity
Set "Playing", "Streaming", "Listening to" & "Watching" in Discord to whatever you want.
Set Discord Activity क्या है?
Set Discord Activity Hell.sh द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Set "Playing", "Streaming", "Listening to" & "Watching" in Discord to whatever you want."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Set Discord Activity एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
सहायता पृष्ठ URL | https://github.com/Sainan/Set-Discord-Activity/issues |
गोपनीयता नीति पृष्ठ URL | 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" } ] } |