Set Discord Activity
Set "Playing", "Streaming", "Listening to" & "Watching" in Discord to whatever you want.
Qu'est-ce que Set Discord Activity ?
Set Discord Activity est une extension Chrome développée par Hell.sh, et sa fonction principale est "Set "Playing", "Streaming", "Listening to" & "Watching" in Discord to whatever you want.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Set Discord Activity
Téléchargez les fichiers d'extension Set Discord Activity au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
It even has a YouTube, Plex, and SoundCloud integration, so you can automatically share what you're watching/listening to on those platforms.
Informations de Base sur l'Extension
Nom | Set Discord Activity |
ID | dlmmhgaeahcfkojednnfghfpinbinicj |
URL Officiel | https://chromewebstore.google.com/detail/set-discord-activity/dlmmhgaeahcfkojednnfghfpinbinicj |
Description | Set "Playing", "Streaming", "Listening to" & "Watching" in Discord to whatever you want. |
Taille du Fichier | 24.75 KB |
Nombre d'Installations | 26,546 |
Version Actuelle | 2.10.0 |
Dernière Mise à Jour | 2021-07-02 |
Date de Publication | 2020-05-05 |
Évaluation | 3.70/5 Total 225 Évaluations |
Développeur | Hell.sh |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/Sainan/Set-Discord-Activity |
URL de la Page d'Aide | https://github.com/Sainan/Set-Discord-Activity/issues |
URL de la Page de Politique de Confidentialité | https://hell.sh/privacy |
Langues Prises en Charge | 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" } ] } |