Website Theme Sync

Keeps the web page color theme settings in sync with system color theme.

ما هو Website Theme Sync؟

Website Theme Sync هو إضافة Chrome تم تطويرها بواسطة p.ryaposov، والميزة الرئيسية لها هي "Keeps the web page color theme settings in sync with system color theme.".

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

screenshot

تحميل ملف CRX للإضافة Website Theme Sync

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

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

                        Why?
Some web apps have full light/dark theme support, but don't allow you to sync it with OS for some reason. The goal of this browser extension is to make the website keep the theme in sync with OS settings.

Supported web apps:
- Twitter.com
- Slack.com
- Coderslang.com                    

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

الاسم Website Theme Sync Website Theme Sync
ID nofdgmcbecpbdgcmlpmcfkpgdefomjbn
عنوان URL الرسمي https://chromewebstore.google.com/detail/website-theme-sync/nofdgmcbecpbdgcmlpmcfkpgdefomjbn
الوصف Keeps the web page color theme settings in sync with system color theme.
حجم الملف 62.49 KB
عدد التثبيتات 22
النسخة الحالية 0.1
آخر تحديث 2021-06-17
تاريخ النشر 2021-06-16
تقييم 5.00/5 مجموع تقييمات 1
المطور p.ryaposov
البريد الإلكتروني [email protected]
نوع الدفع free
عنوان صفحة المساعدة https://github.com/ryaposov/website-theme-sync
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Website Theme Sync",
    "manifest_version": 3,
    "version": "0.1",
    "description": "Keeps the web page color theme settings in sync with system color theme.",
    "icons": {
        "200": "icons\/200x200.png",
        "400": "icons\/400x400.png",
        "600": "icons\/600x600.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.slack.com\/*"
            ],
            "js": [
                "slack.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*.coderslang.com\/*"
            ],
            "js": [
                "coderslang.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*.twitter.com\/*"
            ],
            "js": [
                "twitter.js"
            ]
        }
    ]
}