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": "LockedIn AI", "description": "LockedIn AI: LockedIn Your Next Big Professional Meeting", "version": "1.2", "permissions": [ "activeTab", "commands" ], "background": { "service_worker": "background.js" }, "action": { "default_title": "Solve!", "default_icon": "logo.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.lockedinai.com\/*", "http:\/\/localhost:3000\/*" ], "js": [ "content.js" ] } ], "externally_connectable": { "matches": [ "*:\/\/*.lockedinai.com\/*", "http:\/\/localhost:3000\/*" ] }, "commands": { "trigger_code_copilot": { "suggested_key": { "default": "Ctrl+Shift+U", "mac": "Command+Shift+U" }, "description": "Trigger Code Copilot" } } }