Set Discord Activity

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

O que é Set Discord Activity?

Set Discord Activity é uma extensão do Chrome desenvolvida por Hell.sh, e sua principal característica é "Set "Playing", "Streaming", "Listening to" & "Watching" in Discord to whatever you want.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Set Discord Activity

Baixe arquivos de extensão Set Discord Activity no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome Set Discord Activity Set Discord Activity
ID dlmmhgaeahcfkojednnfghfpinbinicj
URL Oficial https://chromewebstore.google.com/detail/set-discord-activity/dlmmhgaeahcfkojednnfghfpinbinicj
Descrição Set "Playing", "Streaming", "Listening to" & "Watching" in Discord to whatever you want.
Tamanho do Arquivo 24.75 KB
Contagem de Instalações 26,546
Versão Atual 2.10.0
Última Atualização 2021-07-02
Data de Publicação 2020-05-05
Classificação 3.70/5 Total de 225 Avaliações
Desenvolvedor Hell.sh
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/Sainan/Set-Discord-Activity
URL da Página de Ajuda https://github.com/Sainan/Set-Discord-Activity/issues
URL da Página de Política de Privacidade https://hell.sh/privacy
Idiomas Suportados 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"
        }
    ]
}