Inspect and view changes in Wondrful: AI meeting summary and automation 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": "Wondrful: AI meeting summary and automation",
"version": "1.1",
"description": "Transcribe and summarise meetings while automating the post-meeting follow-up emails with AI.",
"permissions": [
"storage",
"unlimitedStorage"
],
"content_security_policy": {
"extension_pages": "script-src 'wasm-unsafe-eval' 'self'; object-src 'self';"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"css": [
"assets/style.css"
],
"js": [
"content-script/index.js",
"content-script/inject.js"
]
}
],
"web_accessible_resources": [
{
"matches": [
"<all_urls>"
],
"resources": [
"assets/*",
"content-script/*"
]
}
],
"manifest_version": 3
}