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": "__MSG_extensionName__",
"short_name": "Dark Mode",
"default_locale": "en",
"version": "3.3.1",
"description": "__MSG_extensionDescription__",
"author": "Your Name",
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"action": {
"default_popup": "popup.html",
"default_title": "Auto Dark Mode Switcher"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"themes.js",
"content.js",
"floating-button.js"
],
"css": [
"floating.css"
],
"run_at": "document_start",
"all_frames": false
}
],
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Alt+Shift+D",
"mac": "MacCtrl+Shift+D"
},
"description": "Toggle Dark Mode"
},
"toggle_dark": {
"suggested_key": {
"default": "Ctrl+Shift+L",
"mac": "Command+Shift+L"
},
"description": "Quick toggle dark mode on\/off"
}
},
"permissions": [
"storage",
"activeTab",
"contextMenus"
],
"optional_permissions": [
"geolocation"
],
"host_permissions": [
"<all_urls>"
]
}