Inspect and view changes in ChatGPT assistant for Google Meet 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",
"version": "0.1.20",
"manifest_version": 3,
"name": "__MSG_extName__",
"short_name": "Ask_me",
"description": "__MSG_extDesc__",
"author": "Amadeo",
"default_locale": "en",
"background": {
"service_worker": "serviceWorker.bundle.js"
},
"action": {
"default_popup": "popup.html",
"default_icon": "assets/logo_256.png"
},
"icons": {
"16": "assets/logo_128.png",
"32": "assets/logo_128.png",
"48": "assets/logo_128.png",
"64": "assets/logo_128.png",
"128": "assets/logo_128.png",
"256": "assets/logo_256.png"
},
"content_scripts": [
{
"matches": [
"https://meet.google.com/*"
],
"js": [
"contentScript.bundle.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"assets/logo.svg"
],
"matches": [
"https://meet.google.com/*"
]
}
],
"externally_connectable": {
"matches": [
"https://portal.amadeo.app/*"
]
},
"permissions": [],
"optional_permissions": [
"clipboardWrite"
],
"commands": {
"get-ask": {
"suggested_key": {
"default": "Alt+A"
},
"description": "Ask a question during a meeting"
},
"get-explain": {
"suggested_key": {
"default": "Alt+E"
},
"description": "Explain topic during a meeting"
}
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
}
}