Inspect and view changes in SpeedyRead 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": "SpeedyRead",
"description": "The ultimate tool to read text faster by highlighting the starting characters of each word",
"version": "1.0.1",
"manifest_version": 3,
"action": {
"default_popup": "popup/index.html",
"default_width": 500,
"default_height": 500,
"default_icon": "images/icon.png"
},
"icons": {
"16": "images/icon_16.png",
"32": "images/icon_32.png",
"48": "images/icon_48.png",
"128": "images/icon_128.png"
},
"content_scripts": [
{
"js": [
"scripts/content.js"
],
"matches": [
"https://*/*"
]
}
],
"permissions": [
"storage"
]
}