Inspect and view changes in Speedy 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": "Speedy Reader",
"description": "Speedy Reader",
"version": "1.0.7",
"action": {
"default_popup": "popup.html",
"default_title": "Speedy Reader",
"default_icon": "icon.png"
},
"web_accessible_resources": [
{
"resources": [
"options.html"
],
"matches": [
"<all_urls>"
]
}
],
"permissions": [
"tabs",
"storage"
],
"icons": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
},
"options_page": "options.html",
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"contentScript.js"
]
}
]
}