Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "ReadableWeb",
"version": "1.3.0",
"description": "Readable text to speech extension",
"icons": {
"24": "icons\/echo-24x24.png",
"32": "icons\/echo-32x32.png",
"48": "icons\/echo-48x48.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"exclude_matches": [
"https:\/\/www.sensoryreadable.com\/apps\/pdf-reader\/*"
],
"all_frames": true,
"match_about_blank": true,
"match_origin_as_fallback": true,
"js": [
"content.js"
]
}
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"128": "icon.png"
}
},
"background": {
"service_worker": "background.js"
},
"permissions": [
"tts",
"storage",
"nativeMessaging"
]
}