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_appName__",
"version": "2.0.1",
"description": "__MSG_appDesc__",
"permissions": [
"activeTab",
"storage",
"tabs",
"alarms"
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"css": [
"themes\/dark-theme.css"
],
"js": [
"content.js"
],
"run_at": "document_start"
}
],
"commands": {
"toggle-dark-mode": {
"suggested_key": {
"default": "Alt+D",
"mac": "Alt+D"
},
"description": "__MSG_cmdToggleDark__"
},
"toggle-blue-light": {
"suggested_key": {
"default": "Alt+B",
"mac": "Alt+B"
},
"description": "__MSG_cmdToggleBlue__"
}
},
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"default_locale": "en"
}