Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"version": "0.5.4",
"name": "Dark Mode",
"manifest_version": 3,
"offline_enabled": true,
"host_permissions": [
"<all_urls>"
],
"optional_permissions": [
"alarms"
],
"description": "A global dark theme for the web.",
"homepage_url": "https:\/\/mybrowseraddon.com\/dark-mode.html",
"commands": {
"_execute_action": []
},
"background": {
"service_worker": "background.js"
},
"permissions": [
"storage",
"contextMenus"
],
"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\/16.png",
"32": "data\/icons\/32.png",
"48": "data\/icons\/48.png",
"64": "data\/icons\/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\/16.png",
"32": "data\/icons\/32.png",
"48": "data\/icons\/48.png",
"64": "data\/icons\/64.png",
"128": "data\/icons\/128.png"
}
}