Discord Status

Set your discord status, simple, easy and free.

Discord Status란 무엇입니까?

Discord Status은(는) Bryson Guwin에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Set your discord status, simple, easy and free."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Discord Status 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Set a Status for your Discord account, Do you want a cool free custom status like bots would have? Well you came to the right place this Chrome Item will help you custom set your status without any struggle.                    

확장 프로그램 기본 정보

이름 Discord Status Discord Status
ID phhkfpenalhlnhefgcehhdgoabneidjn
공식 URL https://chromewebstore.google.com/detail/discord-status/phhkfpenalhlnhefgcehhdgoabneidjn
설명 Set your discord status, simple, easy and free.
파일 크기 36.92 KB
설치 횟수 4,038
현재 버전 1.0.0
최근 업데이트 2021-04-01
출시 날짜 2020-12-01
평점 2.93/5 총 30 개의 평점
개발자 Bryson Guwin
이메일 [email protected]
결제 유형 free
지원되는 언어 de,en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "default_locale": "en",
    "name": "Discord Status",
    "description": "Set your discord status, simple, easy and free.",
    "icons": {
        "128": "icon.png"
    },
    "version": "1.0.0",
    "author": "UNOStudios",
    "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\/*"
            ],
            "js": [
                "discord.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "youtube.js",
                "content_script.js"
            ],
            "run_at": "document_idle"
        },
        {
            "matches": [
                "https:\/\/soundcloud.com\/*"
            ],
            "js": [
                "soundcloud.js",
                "content_script.js"
            ],
            "run_at": "document_idle"
        },
        {
            "matches": [
                "https:\/\/app.plex.tv\/desktop"
            ],
            "js": [
                "plex.js",
                "content_script.js"
            ],
            "run_at": "document_idle"
        }
    ]
}