Set Discord Activity
Set "Playing", "Streaming", "Listening to" & "Watching" in Discord to whatever you want.
Cos'è Set Discord Activity?
Set Discord Activity è un'estensione di Chrome sviluppata da Hell.sh, e la sua funzione principale è "Set "Playing", "Streaming", "Listening to" & "Watching" in Discord to whatever you want.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Set Discord Activity
Scarica i file di estensione Set Discord Activity in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
It even has a YouTube, Plex, and SoundCloud integration, so you can automatically share what you're watching/listening to on those platforms.
Informazioni di Base sull'Estensione
Nome | Set Discord Activity |
ID | dlmmhgaeahcfkojednnfghfpinbinicj |
URL Ufficiale | https://chromewebstore.google.com/detail/set-discord-activity/dlmmhgaeahcfkojednnfghfpinbinicj |
Descrizione | Set "Playing", "Streaming", "Listening to" & "Watching" in Discord to whatever you want. |
Dimensione del File | 24.75 KB |
Conteggio Installazioni | 26,546 |
Versione Corrente | 2.10.0 |
Ultimo Aggiornamento | 2021-07-02 |
Data di Pubblicazione | 2020-05-05 |
Valutazione | 3.70/5 Totale 225 Valutazioni |
Sviluppatore | Hell.sh |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/Sainan/Set-Discord-Activity |
URL della Pagina di Aiuto | https://github.com/Sainan/Set-Discord-Activity/issues |
URL della Pagina della Politica sulla Privacy | https://hell.sh/privacy |
Lingue Supportate | 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" } ] } |