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": "Universal Dark Mode Pro",
"version": "2.1",
"description": "Transform your entire browser into dark mode - tabs, new tab, and all websites",
"permissions": [
"storage",
"tabs",
"unlimitedStorage",
"history",
"bookmarks"
],
"chrome_url_overrides": {
"newtab": "newtab.html"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
],
"css": [
"dark-mode.css"
],
"run_at": "document_start"
}
],
"background": {
"service_worker": "background.js"
},
"options_page": "settings.html",
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
}