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",
"name": "Text To Speech Downloader",
"description": "Download Studio-Quality Audio (48kHz, 24bit) directly from the Google Cloud Text-to-Speech page in uncompressed .MP3 & .WAV files.",
"manifest_version": 3,
"version": "2.1",
"permissions": [
"storage"
],
"host_permissions": [
"https:\/\/filmfreebies.com\/*",
"https:\/\/www.gstatic.com\/cloud-site-ux\/text_to_speech\/*"
],
"background": {
"service_worker": "service-worker.js",
"type": "module"
},
"icons": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/cloud.google.com\/*text-to-speech*",
"https:\/\/www.gstatic.com\/cloud-site-ux\/text_to_speech\/*"
],
"js": [
"contentscript.js"
],
"run_at": "document_idle",
"all_frames": true
}
],
"web_accessible_resources": [
{
"resources": [
"style.css",
"style.js",
"gstatic-hook.js",
"lame.min.js",
"logo.png"
],
"matches": [
"https:\/\/cloud.google.com\/*",
"https:\/\/www.gstatic.com\/*"
]
}
]
}