Real-time video translator using Google Translate.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 3,
"version": "0.1.1",
"name": "Ultimate Video Translator",
"options_page": "html/options.html",
"author": "FahdD95",
"description": "Real-time video translator using Google Translate.",
"icons": {
"16": "img/16.png",
"19": "img/19.png",
"32": "img/32.png",
"38": "img/38.png",
"48": "img/48.png",
"128": "img/128.png"
},
"permissions": [
"activeTab",
"storage",
"scripting",
"declarativeNetRequest",
"nativeMessaging"
],
"host_permissions": [
"https://*.youtube.com/*"
],
"action": {
"default_icon": {
"19": "img/19.png",
"38": "img/38.png"
},
"default_popup": "html/popup.html",
"default_title": "Ultimate Video Translator"
},
"background": {
"service_worker": "/js/background.js"
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}