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
Eメール [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"
        }
    ]
}