Help people to get real time transcript.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"description": "Help people to get real time transcript.",
"version": "3.1.7",
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "Live Transcript Extension",
"manifest_version": 3,
"action": {
"default_title": " transcript",
"default_icon": "mic.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"run_at": "document_end",
"js": [
"content.js"
]
}
],
"oauth2": {
"client_id": "75322180579-medvlen37uc6t499lcit39rh7437jph9.apps.googleusercontent.com",
"scopes": [
"https://www.googleapis.com/auth/userinfo.email",
"https://www.googleapis.com/auth/drive"
]
},
"permissions": [
"identity",
"activeTab",
"desktopCapture",
"storage",
"tabs"
],
"content_security_policy": {
"extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'",
"sandbox": "script-src 'self' 'wasm-unsafe-eval'; sandbox allow-scripts; script-src 'self' 'https://www.googleapis.com'; object-src 'self'"
},
"background": {
"service_worker": "background.js"
}
}