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": "iTour Video Translation",
"version": "2.0.9",
"description": "This extension translates video's audio on the current tab to your own language",
"content_security_policy": {
"script-src": "self",
"object-src": "self"
},
"icons": {
"16": "static\/img\/app_icon.png",
"19": "static\/img\/app_icon.png",
"38": "static\/img\/app_icon.png",
"48": "static\/img\/app_icon.png",
"128": "static\/img\/app_icon.png"
},
"action": {
"default_icon": "static\/img\/app_icon.png",
"default_title": "iTour Video Translation",
"default_popup": "popup.html"
},
"options_page": "option.html",
"background": {
"service_worker": "background.main.js"
},
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"css": [],
"js": [
"content.main.js"
],
"run_at": "document_end"
}
],
"host_permissions": [
"*:\/\/*\/*"
],
"permissions": [
"storage",
"downloads",
"unlimitedStorage",
"cookies",
"desktopCapture"
]
}