Set Discord Activity

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

什么是Set Discord Activity?

Set Discord Activity是由Hell.sh开发的Chrome扩展程序,该扩展的主要功能是“Set "Playing", "Streaming", "Listening to" & "Watching" in Discord to whatever you want.”。

扩展截图

screenshot

下载Set Discord Activity扩展crx文件

下载Set Discord Activity扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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

扩展基本信息

名称 Set Discord Activity Set Discord Activity
ID dlmmhgaeahcfkojednnfghfpinbinicj
官方URL https://chromewebstore.google.com/detail/set-discord-activity/dlmmhgaeahcfkojednnfghfpinbinicj
简介 Set "Playing", "Streaming", "Listening to" & "Watching" in Discord to whatever you want.
文件大小 24.75 KB
安装次数 26,546
当前版本 2.10.0
更新时间 2021-07-02
上架时间 2020-05-05
评分 3.70/5 共225次评分
开发者 Hell.sh
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/Sainan/Set-Discord-Activity
帮助页面URL https://github.com/Sainan/Set-Discord-Activity/issues
隐私政策页面URL https://hell.sh/privacy
支持的语言 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"
        }
    ]
}