Inspect and view changes in CapTube (Dual Captions for YouTube) source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"short_name": "captube",
"description": "Dual subtitles with AI-enabled translations",
"version": "1.2.3",
"name": "CapTube (Dual Captions for YouTube)",
"manifest_version": 2,
"author": "Dan Chen",
"permissions": [
"storage",
"https://www.youtube.com/*",
"https://tmt.tencentcloudapi.com/*",
"https://api.deepl.com/*"
],
"background": {
"scripts": [
"background.min.js"
]
},
"browser_action": {
"default_icon": "icon-gray.png",
"default_popup": "popup.html"
},
"icons": {
"16": "icon16.png",
"32": "icon32.png",
"128": "icon128.png",
"512": "icon.png"
},
"content_scripts": [
{
"matches": [
"https://www.youtube.com/*"
],
"js": [
"content.min.js"
],
"run_at": "document_end"
}
],
"externally_connectable": {
"matches": [
"https://www.youtube.com/*"
]
},
"web_accessible_resources": [
"captube.min.js",
"icon32.png"
],
"options_ui": {
"chrome_style": true,
"page": "options.html"
}
}