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": "AI Speak Subtitles for YouTube",
"version": "1.5.2",
"description": "Translate and speak subtitles for YouTube into multiple languages with AI.",
"action": {
"default_icon": ".\/assets\/icon-128.png",
"default_popup": ".\/popup\/index.html"
},
"background": {
"service_worker": ".\/background.js"
},
"icons": {
"16": "assets\/icon-128.png",
"32": "assets\/icon-128.png",
"48": "assets\/icon-128.png",
"128": "assets\/icon-128.png",
"512": "assets\/icon-128.png"
},
"permissions": [
"tabs",
"activeTab",
"storage",
"unlimitedStorage"
],
"host_permissions": [
"*:\/\/*\/*"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
".\/contentScripts.js"
],
"run_at": "document_end"
}
],
"web_accessible_resources": [
{
"resources": [
"style.css",
"injectedScript.js"
],
"matches": [
"https:\/\/www.youtube.com\/*"
]
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
}
}