Website Theme Sync
Keeps the web page color theme settings in sync with system color theme.
Apa itu Website Theme Sync?
Website Theme Sync adalah ekstensi Chrome yang dikembangkan oleh p.ryaposov, dan fitur utamanya adalah "Keeps the web page color theme settings in sync with system color theme.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Website Theme Sync
Unduh file ekstensi Website Theme Sync dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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
Informasi Dasar Ekstensi
Nama | Website Theme Sync |
ID | nofdgmcbecpbdgcmlpmcfkpgdefomjbn |
URL Resmi | https://chromewebstore.google.com/detail/website-theme-sync/nofdgmcbecpbdgcmlpmcfkpgdefomjbn |
Deskripsi | Keeps the web page color theme settings in sync with system color theme. |
Ukuran File | 62.49 KB |
Jumlah Instalasi | 22 |
Versi Saat Ini | 0.1 |
Terakhir Diperbarui | 2021-06-17 |
Tanggal Publikasi | 2021-06-16 |
Penilaian | 5.00/5 Total 1 Penilaian |
Pengembang | p.ryaposov |
[email protected] | |
Tipe Pembayaran | free |
URL Halaman Bantuan | https://github.com/ryaposov/website-theme-sync |
Bahasa yang Didukung | 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" ] } ] } |