Inspect and view changes in Live Caption Analytics 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 Analytics",
"options_ui": {
"page": "options.html",
"open_in_tab": false,
"js": "options.js"
},
"description": "Provide routes to send live captions to analytics servers.",
"version": "1.0.4.8",
"icons": {
"128": "icons/icon.png"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https://meet.google.com/*",
"https://*.zoom.us/wc/*",
"https://localhost/lca/*",
"https://*.jp/*",
"https://*.com/*",
"https://nativecamp.net/*",
"https://*.rarejob.com/*",
"https://eikaiwa.dmm.com/*"
],
"js": [
"inject.js"
],
"css": [
"css/style.css"
],
"run_at": "document_idle",
"all_frames": false
}
],
"permissions": [
"storage",
"identity"
],
"host_permissions": [
"https://meet.google.com/*",
"https://*.zoom.us/",
"https://localhost/lca/*",
"https://*.rarejob.com/*",
"https://eikaiwa.dmm.com/*"
],
"web_accessible_resources": [
{
"resources": [
"options.js",
"background.js",
"options.html",
"icons/icon_config.png",
"icons/icon_delete.png",
"icons/icon_circle.png",
"icons/icon_record.png",
"icons/icon_log.png",
"icons/icon_login.png",
"icons/icon_display.png",
"css/style.css"
],
"matches": [
"https://meet.google.com/*",
"https://*.zoom.us/*",
"http://localhost/*",
"https://localhost/*",
"https://*.jp/*",
"https://*.com/*",
"https://nativecamp.net/*",
"https://*.rarejob.com/*",
"https://eikaiwa.dmm.com/*"
]
}
],
"manifest_version": 3,
"default_locale": "en"
}