Website Theme Sync
Keeps the web page color theme settings in sync with system color theme.
Hvad er Website Theme Sync?
Website Theme Sync er en Chrome-udvidelse udviklet af p.ryaposov, og dens hovedfunktion er "Keeps the web page color theme settings in sync with system color theme.".
Udvidelsesskærmbilleder
Download Website Theme Sync-udvidelses-CRX-fil
Download Website Theme Sync-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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
Grundlæggende oplysninger om udvidelsen
Navn | Website Theme Sync |
ID | nofdgmcbecpbdgcmlpmcfkpgdefomjbn |
Officiel URL | https://chromewebstore.google.com/detail/website-theme-sync/nofdgmcbecpbdgcmlpmcfkpgdefomjbn |
Beskrivelse | Keeps the web page color theme settings in sync with system color theme. |
Filstørrelse | 62.49 KB |
Antal Installationer | 22 |
Nuværende Version | 0.1 |
Senest Opdateret | 2021-06-17 |
Udgivelsesdato | 2021-06-16 |
Bedømmelse | 5.00/5 Samlet 1 Bedømmelser |
Udvikler | p.ryaposov |
[email protected] | |
Betalingsmetode | free |
Hjælpeside-URL | https://github.com/ryaposov/website-theme-sync |
Understøttede Sprog | 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" ] } ] } |