Website Theme Sync

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

Co to jest Website Theme Sync?

Website Theme Sync to rozszerzenie Chrome opracowane przez p.ryaposov, a jego główną funkcją jest „Keeps the web page color theme settings in sync with system color theme.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Website Theme Sync

Pobierz pliki rozszerzeń Website Theme Sync w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Website Theme Sync Website Theme Sync
ID nofdgmcbecpbdgcmlpmcfkpgdefomjbn
Oficjalny URL https://chromewebstore.google.com/detail/website-theme-sync/nofdgmcbecpbdgcmlpmcfkpgdefomjbn
Opis Keeps the web page color theme settings in sync with system color theme.
Rozmiar pliku 62.49 KB
Liczba instalacji 22
Aktualna Wersja 0.1
Ostatnia Aktualizacja 2021-06-17
Data Publikacji 2021-06-16
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper p.ryaposov
E-mail [email protected]
Typ Płatności free
Adres URL Strony Pomocy https://github.com/ryaposov/website-theme-sync
Obsługiwane Języki 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"
            ]
        }
    ]
}