Website Theme Sync

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

¿Qué es Website Theme Sync?

Website Theme Sync es una extensión de Chrome desarrollada por p.ryaposov, y su función principal es "Keeps the web page color theme settings in sync with system color theme.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Website Theme Sync

Descarga archivos de extensión Website Theme Sync en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre Website Theme Sync Website Theme Sync
ID nofdgmcbecpbdgcmlpmcfkpgdefomjbn
URL Oficial https://chromewebstore.google.com/detail/website-theme-sync/nofdgmcbecpbdgcmlpmcfkpgdefomjbn
Descripción Keeps the web page color theme settings in sync with system color theme.
Tamaño del Archivo 62.49 KB
Cantidad de Instalaciones 22
Versión Actual 0.1
Última Actualización 2021-06-17
Fecha de Publicación 2021-06-16
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador p.ryaposov
Correo electrónico [email protected]
Tipo de Pago free
URL de la Página de Ayuda https://github.com/ryaposov/website-theme-sync
Idiomas Soportados 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"
            ]
        }
    ]
}