Dark Mode.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "__MSG_app_name__",
"description": "__MSG_app_description__",
"version": "1.0.1",
"manifest_version": 3,
"default_locale": "en_US",
"host_permissions": [
"https://*/*",
"http://*/*"
],
"icons": {
"32": "src/view/night-mode_32.png",
"64": "src/view/night-mode_64.png",
"128": "src/view/night-mode_128.png"
},
"permissions": [
"storage",
"scripting",
"webNavigation"
],
"background": {
"service_worker": "src/service-workers/sw.js"
},
"action": {
"default_popup": "src/view/popup.html",
"default_title": "Click to show an alert"
}
}