Set Discord Activity

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

Set Discord Activityคืออะไร?

Set Discord Activity เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Hell.sh และคุณลักษณะหลักของมันคือ "Set "Playing", "Streaming", "Listening to" & "Watching" in Discord to whatever you want."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Set Discord Activity

ดาวน์โหลดไฟล์ส่วนขยาย 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"
        }
    ]
}