Set Discord Activity

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

¿Qué es Set Discord Activity?

Set Discord Activity es una extensión de Chrome desarrollada por Hell.sh, y su función principal es "Set "Playing", "Streaming", "Listening to" & "Watching" in Discord to whatever you want.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Set Discord Activity

Descarga archivos de extensión Set Discord Activity en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

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

Información Básica de la Extensión

Nombre Set Discord Activity Set Discord Activity
ID dlmmhgaeahcfkojednnfghfpinbinicj
URL Oficial https://chromewebstore.google.com/detail/set-discord-activity/dlmmhgaeahcfkojednnfghfpinbinicj
Descripción Set "Playing", "Streaming", "Listening to" & "Watching" in Discord to whatever you want.
Tamaño del Archivo 24.75 KB
Cantidad de Instalaciones 26,546
Versión Actual 2.10.0
Última Actualización 2021-07-02
Fecha de Publicación 2020-05-05
Calificación 3.70/5 Total de 225 Calificaciones
Desarrollador Hell.sh
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/Sainan/Set-Discord-Activity
URL de la Página de Ayuda https://github.com/Sainan/Set-Discord-Activity/issues
URL de la Página de Política de Privacidad https://hell.sh/privacy
Idiomas Soportados 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"
        }
    ]
}