Discord Status

Set your discord status, simple, easy and free.

ما هو Discord Status؟

Discord Status هو إضافة Chrome تم تطويرها بواسطة Bryson Guwin، والميزة الرئيسية لها هي "Set your discord status, simple, easy and free.".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Discord Status

قم بتنزيل ملفات الامتداد Discord Status بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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"
        }
    ]
}