Set Discord Activity

Set "Playing", "Streaming", "Listening to" & "Watching" in Discord to whatever you want.

Was ist Set Discord Activity?

Set Discord Activity ist eine Chrome-Erweiterung, die von Hell.sh entwickelt wurde, und ihr Hauptmerkmal ist "Set "Playing", "Streaming", "Listening to" & "Watching" in Discord to whatever you want.".

Erweiterungsscreenshots

screenshot

Set Discord Activity-Erweiterungs-CRX-Datei herunterladen

Laden Sie Set Discord Activity-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        It even has a YouTube, Plex, and SoundCloud integration, so you can automatically share what you're watching/listening to on those platforms.                    

Grundlegende Informationen zur Erweiterung

Name Set Discord Activity Set Discord Activity
ID dlmmhgaeahcfkojednnfghfpinbinicj
Offizielle URL https://chromewebstore.google.com/detail/set-discord-activity/dlmmhgaeahcfkojednnfghfpinbinicj
Beschreibung Set "Playing", "Streaming", "Listening to" & "Watching" in Discord to whatever you want.
Dateigröße 24.75 KB
Installationsanzahl 26,546
Aktuelle Version 2.10.0
Letztes Update 2021-07-02
Veröffentlichungsdatum 2020-05-05
Bewertung 3.70/5 Insgesamt 225 Bewertungen
Entwickler Hell.sh
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/Sainan/Set-Discord-Activity
Hilfeseite URL https://github.com/Sainan/Set-Discord-Activity/issues
URL der Datenschutzrichtlinien-Seite https://hell.sh/privacy
Unterstützte Sprachen 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"
        }
    ]
}