Website Theme Sync
Keeps the web page color theme settings in sync with system color theme.
O que é Website Theme Sync?
Website Theme Sync é uma extensão do Chrome desenvolvida por p.ryaposov, e sua principal característica é "Keeps the web page color theme settings in sync with system color theme.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Website Theme Sync
Baixe arquivos de extensão Website Theme Sync no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | Website Theme Sync |
ID | nofdgmcbecpbdgcmlpmcfkpgdefomjbn |
URL Oficial | https://chromewebstore.google.com/detail/website-theme-sync/nofdgmcbecpbdgcmlpmcfkpgdefomjbn |
Descrição | Keeps the web page color theme settings in sync with system color theme. |
Tamanho do Arquivo | 62.49 KB |
Contagem de Instalações | 22 |
Versão Atual | 0.1 |
Última Atualização | 2021-06-17 |
Data de Publicação | 2021-06-16 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | p.ryaposov |
[email protected] | |
Tipo de Pagamento | free |
URL da Página de Ajuda | https://github.com/ryaposov/website-theme-sync |
Idiomas Suportados | 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" ] } ] } |