SoundCloud DeepDark

SoundCloud Dark Theme

ما هو SoundCloud DeepDark؟

SoundCloud DeepDark هو إضافة Chrome تم تطويرها بواسطة motive، والميزة الرئيسية لها هي "SoundCloud Dark Theme".

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

screenshot
screenshot

تحميل ملف CRX للإضافة SoundCloud DeepDark

قم بتنزيل ملفات الامتداد SoundCloud DeepDark بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Google Chrome extension for SOUNDCLOUD

The extension adds a dark theme to the soundcloud, not provided by the developers of the project. Save eyes at night and allows the site to look aesthetically pleasing.

The product is open source, you can find the code at https://github.com/sx-motive/soundcloud-deepdark

Report an error or ask a question to the author
Software / frontend developer - Denis Kunitsyn - https://t.me/sxmotive                    

معلومات أساسية عن التمديد

الاسم SoundCloud DeepDark SoundCloud DeepDark
ID edooflagimepjnndabmcdlahbfpagjcl
عنوان URL الرسمي https://chromewebstore.google.com/detail/soundcloud-deepdark/edooflagimepjnndabmcdlahbfpagjcl
الوصف SoundCloud Dark Theme
حجم الملف 14.48 KB
عدد التثبيتات 385
النسخة الحالية 1.0.1
آخر تحديث 2021-11-06
تاريخ النشر 2021-11-06
تقييم 3.75/5 مجموع تقييمات 4
المطور motive
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/sx-motive/soundcloud-deepdark
عنوان صفحة المساعدة https://github.com/sx-motive/soundcloud-deepdark
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SoundCloud DeepDark",
    "description": "SoundCloud Dark Theme",
    "version": "1.0.1",
    "permissions": [],
    "icons": {
        "128": "logo.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/soundcloud.com\/*"
            ],
            "js": [
                "background.js"
            ],
            "run_at": "document_start"
        }
    ],
    "browser_action": {
        "default_title": "SoundCloud DeepDark",
        "default_icon": "logo.png"
    },
    "manifest_version": 2,
    "web_accessible_resources": [
        "dark.css"
    ]
}