Inspect and view changes in Readme - Text to Speech 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": 2,
"version": "1.0.0",
"name": "Readme - Text to Speech",
"description": "Readme - Text to Speech can read aloud text from any websites, eBooks and documents. Simply select and speak (TTS).",
"background": {
"scripts": [
"js/jquery.js",
"background.js"
]
},
"content_security_policy": "script-src 'self'; object-src 'self'",
"permissions": [
"contextMenus",
"tts"
],
"browser_action": {
"default_icon": "img/ico_19.png",
"default_popup": "popup.html"
},
"options_page": "options.html",
"icons": {
"16": "img/ico_16.png",
"48": "img/ico_48.png",
"128": "img/ico_128.png"
}
}