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": "Krisp: AI meeting assistant", "description": "AI-Assistant for collaborative meetings that helps you record, transcribe and summarize your meetings", "version": "1.0.0", "action": { "default_popup": "popup.html", "default_title": "Krisp MA", "default_icon": { "16": "displayIcon\/signedOut\/ico16x16.png", "24": "displayIcon\/signedOut\/ico24x24.png", "32": "displayIcon\/signedOut\/ico32x32.png" } }, "permissions": [ "tabs", "storage", "scripting", "activeTab" ], "host_permissions": [ "https:\/\/*.krisp.ai\/*", "https:\/\/meet.google.com\/*", "https:\/\/calendar.google.com\/*" ], "icons": { "16": "displayIcon\/ico16x16.png", "48": "displayIcon\/ico48x48.png", "128": "displayIcon\/ico128x128.png" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "run_at": "document_start", "matches": [ "<all_urls>" ], "js": [ "content.js" ] } ], "web_accessible_resources": [ { "resources": [ "patch.js", "worklet.js", "content.css", "KrispAI\/index.htm" ], "matches": [ "<all_urls>" ] } ], "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'" } }