Inspect and view changes in Better Doc Reader 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,
"name": "Better Doc Reader",
"description": "A tool for enhancing technical documentation.",
"version": "1.8",
"permissions": [
"activeTab",
"commands",
"storage",
"tabs"
],
"commands": {
"toggle-view": {
"suggested_key": {
"default": "Alt+F"
},
"description": "Toggle between full page and content-only views"
},
"narrow-content": {
"suggested_key": {
"default": "Alt+Left"
},
"description": "Make content area narrower"
},
"widen-content": {
"suggested_key": {
"default": "Alt+Right"
},
"description": "Make content area wider"
},
"toggle-dark-mode": {
"suggested_key": {
"default": "Alt+D"
},
"description": "Toggle dark mode"
},
"collapse-left-sidebar": {
"description": "Collapse the left sidebar"
},
"collapse-right-sidebar": {
"description": "Collapse the right sidebar"
}
},
"action": {
"default_icon": {
"16": "icons/icon-16.png",
"48": "icons/icon-48.png",
"128": "icons/icon-128.png"
},
"default_popup": "popup.html"
},
"icons": {
"16": "icons/icon-16.png",
"48": "icons/icon-48.png",
"128": "icons/icon-128.png"
},
"background": {
"service_worker": "background.js"
},
"author": "gnuhpc",
"homepage_url": "https://github.com/gnuhpc/better-doc-reader",
"privacy_policy": "https://github.com/gnuhpc/better-doc-reader/blob/main/privacy_policy.md",
"web_accessible_resources": [
{
"resources": [
"src/modules/*.js"
],
"matches": [
"*://*.aliyun.com/*"
]
}
],
"content_scripts": [
{
"matches": [
"*://*.aliyun.com/*"
],
"js": [
"src/modules/init.js",
"src/modules/darkMode.js",
"src/modules/layout.js",
"src/modules/keyboardHandler.js",
"src/modules/contentToggle.js",
"src/modules/notes.js",
"content.js"
],
"run_at": "document_start",
"all_frames": true
}
]
}