Website Theme Sync
Keeps the web page color theme settings in sync with system color theme.
什麼是Website Theme Sync?
Website Theme Sync是由p.ryaposov開發的Chrome擴展程式,該擴展的主要功能是“Keeps the web page color theme settings in sync with system color theme.”。
擴展截圖
下載Website Theme Sync擴展crx文件
下載Website Theme Sync擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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
擴展基本資訊
名稱 | Website Theme Sync |
ID | nofdgmcbecpbdgcmlpmcfkpgdefomjbn |
官方網址 | https://chromewebstore.google.com/detail/website-theme-sync/nofdgmcbecpbdgcmlpmcfkpgdefomjbn |
簡介 | Keeps the web page color theme settings in sync with system color theme. |
檔案大小 | 62.49 KB |
安裝次數 | 22 |
目前版本 | 0.1 |
更新時間 | 2021-06-17 |
上架時間 | 2021-06-16 |
評分 | 5.00/5 共 1 次評分 |
開發者 | p.ryaposov |
電子郵箱 | [email protected] |
付費類型 | free |
說明頁面URL | https://github.com/ryaposov/website-theme-sync |
支援的語言 | 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" ] } ] } |