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": "Read Aloud",
"version": "1.3",
"description": "Select text and read it aloud using premium voices.",
"permissions": [
"storage"
],
"background": {
"service_worker": "background.js"
},
"icons": {
"16": "icons\/16_16.png",
"32": "icons\/32_32.png",
"128": "icons\/32_32.png"
},
"options_page": "options.html",
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"UUID.js",
"TextUtility.js",
"WebSocketRequest.js",
"TiktokVoiceRequest.js",
"SpeakManager.js",
"content.js"
],
"run_at": "document_start"
}
],
"web_accessible_resources": [
{
"resources": [
"VoiceOptions.js",
"options.js"
],
"matches": [
"<all_urls>"
]
}
]
}