Inspect and view changes in Google Docs Dark Mode 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",
"name": "Google Docs Dark Mode",
"description": "Just another Google Docs dark mode without all the bull shit",
"short_name": "DocsDarkMode",
"version": "1.0.0",
"manifest_version": 3,
"default_locale": "en",
"host_permissions": [
"*://docs.google.com/*"
],
"icons": {
"16": "asset/icon_16.png",
"48": "asset/night-icon.png",
"128": "asset/icon_128.png"
},
"action": {
"default_icon": "asset/day-icon.png",
"default_popup": "./html/Popup.html"
},
"content_scripts": [
{
"css": [
"/asset/custom-dark-mode/docs.css",
"/asset/custom-dark-mode/dark.css"
],
"matches": [
"*://docs.google.com/*"
],
"all_frames": true,
"match_about_blank": true,
"run_at": "document_start",
"exclude_globs": [
"*/chrome/newtab*"
]
}
]
}