Version 1.1.1 View in Chrome Web Store
https://clients2.google.com/service/update2/crx | https://github.com/k97/gmail-system-theme-sync-chrome-extension | |
https://mail.google.com/ | https://chrome.google.com/webstore | |
https://rkarthik.co | https://claude.ai |
{ "name": "Gmail Theme Sync & Control", "icons": { "16": "images/icon16.png", "48": "images/icon48.png", "64": "images/icon64.png", "128": "images/icon128.png" }, "action": { "default_icon": { "16": "images/icon16.png", "48": "images/icon48.png", "64": "images/icon64.png", "128": "images/icon128.png" }, "default_popup": "popup.html" }, "author": "k97", "version": "1.1.1", "incognito": "split", "background": { "type": "module", "service_worker": "background.js" }, "update_url": "https://clients2.google.com/service/update2/crx", "description": "Automatically syncs Gmail with your system theme by default and controls either light or dark mode for a easier experience.", "permissions": [ "activeTab", "scripting", "storage" ], "homepage_url": "https://github.com/k97/gmail-system-theme-sync-chrome-extension", "content_scripts": [ { "js": [ "contentScript.js" ], "run_at": "document_idle", "matches": [ "https://mail.google.com/*" ], "all_frames": false } ], "offline_enabled": true, "host_permissions": [ "https://mail.google.com/*" ], "manifest_version": 3, "minimum_chrome_version": "88" }