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",
"name": "__MSG_appName__",
"description": "__MSG_shortDesc__",
"default_locale": "en",
"version": "1.0",
"manifest_version": 3,
"offline_enabled": true,
"host_permissions": [
"<all_urls>"
],
"permissions": [
"storage",
"contextMenus"
],
"commands": {
"_execute_action": []
},
"background": {
"service_worker": "background.js"
},
"options_ui": {
"open_in_tab": true,
"page": "data\/options\/options.html"
},
"web_accessible_resources": [
{
"matches": [
"<all_urls>"
],
"resources": [
"data\/content_script\/custom\/*",
"data\/content_script\/general\/*",
"data\/content_script\/page_context\/inject.js"
]
}
],
"action": {
"default_title": "Dark Mode",
"default_icon": {
"16": "data\/icons\/icon-16.png",
"32": "data\/icons\/icon-32.png",
"64": "data\/icons\/icon-64.png"
}
},
"content_scripts": [
{
"all_frames": true,
"matches": [
"<all_urls>"
],
"match_about_blank": true,
"run_at": "document_start",
"exclude_globs": [
"*\/chrome\/newtab*"
],
"css": [
"data\/content_script\/inject.css"
],
"js": [
"data\/rules\/rules.js",
"data\/content_script\/inject.js",
"data\/content_script\/vendor\/tinycolor.js",
"data\/content_script\/resources\/native.js"
]
}
],
"icons": {
"16": "data\/icons\/icon-16.png",
"32": "data\/icons\/icon-32.png",
"64": "data\/icons\/icon-64.png",
"128": "data\/icons\/icon-128.png"
}
}