Inspect and view changes in Live caption with translation (ChatGPT) 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",
"name": "Live caption with translation (ChatGPT)",
"description": "Live audio/video streaming caption with translation using ChatGPT",
"version": "0.1.6",
"manifest_version": 3,
"permissions": [
"scripting",
"background",
"tabs",
"tabCapture",
"activeTab",
"storage"
],
"host_permissions": [
"https://*.raccourci.top/*"
],
"content_security_policy": {
"extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';",
"sandbox": "sandbox allow-scripts allow-forms allow-popups allow-modals; script-src 'self' 'unsafe-inline' 'unsafe-eval' 'wasm-unsafe-eval'; child-src 'self';"
},
"action": {
"default_popup": "popup.html",
"default_title": "Click to open",
"default_icon": {
"16": "icons/16.png",
"32": "icons/32.png",
"48": "icons/48.png",
"64": "icons/64.png"
}
},
"icons": {
"16": "icons/16.png",
"32": "icons/32.png",
"48": "icons/48.png",
"64": "icons/64.png"
},
"background": {
"service_worker": "js/background.js"
}
}