Record, Transcribe Google Meet meetings, highlight key moments, tag teammates
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": 2,
"name": "Convin: Video record - Google Meet",
"description": "Record, Transcribe Google Meet meetings, highlight key moments, tag teammates",
"version": "0.0.12",
"browser_action": {
"default_icon": {
"16": "images/icon16.png",
"32": "images/icon32.png",
"48": "images/icon32.png",
"128": "images/icon128.png"
},
"default_popup": "popup.html"
},
"icons": {
"16": "images/icon16.png",
"32": "images/icon32.png",
"48": "images/icon32.png",
"128": "images/icon128.png"
},
"content_scripts": [
{
"js": [
"scripts/google_meet.js"
],
"css": [
"css/convin_meet.css"
],
"matches": [
"*://meet.google.com/*"
]
},
{
"matches": [
"http://*.convin.ai/*",
"https://*.convin.ai/*"
],
"js": [
"scripts/all_frames.js"
],
"all_frames": true
}
],
"background": {
"scripts": [
"scripts/background.js"
],
"persistent": false
},
"options_ui": {
"open_in_tab": false,
"page": "popup.html"
},
"permissions": [
"*://meet.google.com/*",
"*://*.convin.ai/*",
"storage"
]
}