Inspect and view changes in Dark mode for Google™ docs source codes across current and past versions
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",
"manifest_version": 3,
"version": "1.2.1",
"name": "Dark mode for Google™ docs",
"description": "Enable dark mode on Google Docs to reduce eye strain while working on your documents.",
"background": {
"service_worker": "background/background.js"
},
"action": {
"default_popup": "index.html",
"default_icon": "icons/icon_2000.png"
},
"icons": {
"128": "icons/icon_128.png"
},
"host_permissions": [
"<all_urls>"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content/content.js"
]
}
],
"permissions": [
"storage",
"notifications"
],
"web_accessible_resources": [
{
"resources": [
"css/global.css",
"css/page.css",
"icons/*"
],
"matches": [
"https://docs.google.com/*"
]
}
]
}