{ "manifest_version": 3, "name": "The Carrier Bridge", "version": "1.0", "description": "Auto-fill insurance carrier forms with client data from NowCerts.", "permissions": ["storage", "sidePanel", "activeTab", "scripting", "contextMenus"], "host_permissions": [ "https://api.nowcerts.com/*", "https://generativelanguage.googleapis.com/*", "" ], "action": { "default_title": "Open Carrier Bridge" }, "side_panel": { "default_path": "popup.html" }, "background": { "service_worker": "background.js" }, "commands": { "fill_form_shortcut": { "suggested_key": { "default": "Ctrl+Shift+Y", "mac": "Command+Shift+Y" }, "description": "Auto-fill the current page with Active Client data" } }, "content_scripts": [ { "matches": [""], "js": ["content.js"], "all_frames": true } ] }