Inspect and view changes in How Long to Read 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
{
"manifest_version": 2,
"name": "How Long to Read",
"version": "1.0.6",
"description": "Estimates how long it would take to read a web page",
"author": "Daniel Rozenberg",
"homepage_url": "https://github.com/danielrozenberg/how-long-to-read",
"icons": {
"48": "icon.svg",
"96": "icon.svg"
},
"permissions": [
"storage"
],
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
]
}
],
"browser_action": {
"default_icon": "icon.svg",
"default_title": "How Long to Read"
},
"options_ui": {
"page": "options.html",
"browser_style": true
},
"browser_specific_settings": {
"gecko": {
"id": "{dc5bb564-a9fe-4363-a72a-84f1499acf81}"
}
}
}