Data is synced from the Chrome Web Store. View the official store page for the most current information.
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Dark Mode Lite", "description": "A lightweight dark mode", "version": "2.6.0", "web_accessible_resources": [ { "resources": [ "browserAction\/popup.js" ], "matches": [], "extension_ids": [] } ], "commands": { "keyboard-toggle-dark-mode": { "suggested_key": { "windows": "Ctrl+Shift+K", "mac": "Command+Shift+K", "chromeos": "Ctrl+Shift+K", "linux": "Ctrl+Shift+K" }, "description": "Toggle Dark Mode" } }, "permissions": [ "storage", "tabs" ], "content_scripts": [ { "matches": [ "<all_urls>" ], "js": [ "vendor\/browser-polyfill.min.js", "contentScripts\/main.js" ], "run_at": "document_end", "all_frames": true } ], "background": { "service_worker": "background\/main.js" }, "icons": { "48": "icons\/icon_48.png", "96": "icons\/icon_96.png", "128": "icons\/icon_128.png" }, "action": { "default_icon": { "96": "icons\/icon_96.png" }, "default_popup": "browserAction\/popup.html", "default_title": "Dark Mode Lite" } }