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": "Udemy subtitles translator",
"version": "1.0.0",
"description": "Activate this extension to easily translate and sync Udemy subtitles into any language with adjustable timing",
"action": {
"default_title": "Udemy subtitles translator",
"default_icon": {
"32": "Icon 32.png",
"48": "Icon 48.png",
"128": "Icon 64.png"
}
},
"icons": {
"48": "Icon 48.png",
"64": "Icon 128.png",
"128": "Icon 2000.png"
},
"host_permissions": [
"https:\/\/www.udemy.com\/*"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.udemy.com\/*"
],
"js": [
"content.js"
],
"css": [
"content.css"
],
"run_at": "document_end"
}
],
"permissions": [
"notifications",
"activeTab"
]
}