Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "AiSenseUs - AI Meeting Notes, Transcription & Summaries Assistant",
"version": "3.2.10",
"description": "AI meeting assistant for transcription, meeting notes, smart summaries, and emotion insights on Google Meet, Zoom & Teams.",
"action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"icons": {
"128": "icon.png"
},
"content_scripts": [
{
"js": [
"content.js"
],
"run_at": "document_end",
"matches": [
"https:\/\/meet.google.com\/*"
],
"exclude_matches": [
"https:\/\/meet.google.com\/"
]
}
],
"permissions": [
"storage",
"downloads",
"scripting"
],
"host_permissions": [
"https:\/\/meet.google.com\/*"
],
"optional_permissions": [
"notifications"
],
"optional_host_permissions": [
"*:\/\/*\/*",
"https:\/\/*.zoom.us\/",
"https:\/\/teams.live.com\/*",
"https:\/\/teams.microsoft.com\/*"
],
"background": {
"service_worker": "background.js"
}
}