Inspect and view changes in Google Meet Transcripts & AI Summary 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",
"manifest_version": 3,
"name": "Google Meet Transcripts & AI Summary",
"description": "Google Meet Transcription, AI Summary and Insight. Get the most out of Google Meet!",
"version": "4.3.11",
"icons": {
"16": "image/logo16x16.png",
"48": "image/logo48x48.png",
"128": "image/logo128x128.png"
},
"background": {
"service_worker": "login.js"
},
"externally_connectable": {
"matches": [
"https://dev.laxis.tech/*",
"https://dev.laxis.tech/settings*",
"https://staging.laxis.tech/*",
"https://staging.laxis.tech/settings*",
"https://app.laxis.tech/*",
"https://app.laxis.tech/settings*",
"http://localhost:3000/*",
"http://localhost:3000/settings*"
]
},
"content_scripts": [
{
"matches": [
"https://meet.google.com/*"
],
"js": [
"feature/utilities/packages/jquery.min.js",
"feature/utilities/packages/html2canvas.js",
"feature/utilities/packages/html2pdf.bundle.min.js",
"feature/utilities/packages/string-similarity.min.js",
"feature/utilities/util.js",
"inject.js",
"style/panel.js",
"config/share.js",
"config/panel.js",
"config/record.js",
"feature/record/captionObserver.js",
"feature/record/captionControls.js",
"feature/record/captionProcessing.js",
"feature/record/settings.js",
"feature/record/storage.js",
"feature/record/dom.js",
"feature/record/transcript.js",
"feature/record/meetingInfo.js",
"feature/panel/main.js",
"feature/panel/icons.js",
"analytics.js",
"runtime.js"
],
"run_at": "document_idle",
"all_frames": false
}
],
"web_accessible_resources": [
{
"resources": [
"runtime.js",
"analytics.js",
"analytics/analyticsSource.js",
"analytics/load.js",
"image/bookmark/*.svg",
"image/logo.png",
"image/info.svg",
"image/repair.svg",
"style/panel.css"
],
"matches": [
"https://meet.google.com/*"
]
}
],
"permissions": [
"storage"
],
"host_permissions": [
"https://meet.google.com/*"
]
}