Inspect and view changes in Amurex (Early Preview) 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": "Amurex (Early Preview)",
"version": "1.0.27",
"manifest_version": 3,
"description": "Your AI meeting Copilot",
"side_panel": {
"default_path": "sidepanels/sidepanel.html"
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"content_scripts": [
{
"js": [
"content.js"
],
"run_at": "document_end",
"matches": [
"https://meet.google.com/*"
],
"exclude_matches": [
"https://meet.google.com/"
]
},
{
"js": [
"msteams_content.js"
],
"run_at": "document_end",
"matches": [
"https://teams.live.com/*",
"https://teams.microsoft.com/*"
],
"exclude_matches": [
"https://teams.live.com/",
"https://teams.microsoft.com/"
]
}
],
"permissions": [
"storage",
"downloads",
"sidePanel",
"cookies",
"scripting"
],
"host_permissions": [
"https://meet.google.com/*",
"https://teams.live.com/*",
"https://teams.microsoft.com/*",
"https://www.googleapis.com/*",
"https://api.amurex.ai/*",
"https://app.amurex.ai/*",
"http://localhost:3000/*"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_title": "Amurex",
"default_icon": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
}
}
}