Inspect and view changes in READMAX 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": "READMAX",
"version": "1.1.4",
"description": "Readmax extension is used to improve reading skills.",
"manifest_version": 3,
"action": {
"default_popup": "",
"default_title": "Readmax"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"popup/script.js",
"background/background.js"
]
}
],
"background": {
"service_worker": "background/background.js"
},
"host_permissions": [
"<all_urls>",
"http://*/*",
"https://*/*"
],
"permissions": [
"tabs",
"cookies"
],
"icons": {
"16": "assets/logo16.png",
"32": "assets/logo32.png",
"48": "assets/logo48.png",
"128": "assets/logo128.png"
},
"web_accessible_resources": [
{
"matches": [
"https://*/*"
],
"resources": [
"assets/fonts/open_dyslexic/OpenDyslexic-Bold.otf",
"assets/fonts/open_dyslexic/OpenDyslexic-BoldItalic.otf",
"assets/fonts/open_dyslexic/OpenDyslexic-Italic.otf",
"assets/fonts/open_dyslexic/OpenDyslexic-Regular.otf",
"assets/fonts/open_dyslexic/OpenDyslexicMono-Regular.otf"
]
}
]
}