Data is synced from the Chrome Web Store. View the official store page for the most current information.
This extension is no longer available on the Chrome Web Store. We noticed it was gone on Sep 11, 2025.
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Interview Copilot - AI Interview Assistant", "version": "1.0.0", "description": "AI-powered interview assistant with real-time transcription and personalized responses using your documents.", "permissions": [ "storage", "activeTab", "scripting" ], "optional_permissions": [ "tabs" ], "host_permissions": [ "https:\/\/*\/*", "http:\/\/localhost\/*" ], "background": { "service_worker": "background.js", "type": "module" }, "action": { "default_popup": "popup.html", "default_title": "Interview Copilot Settings", "default_icon": { "16": "icons\/icon-16.png", "24": "icons\/icon-24.png", "32": "icons\/icon-32.png", "48": "icons\/icon-48.png", "128": "icons\/icon-128.png" } }, "content_scripts": [ { "matches": [ "https:\/\/*\/*" ], "js": [ "content.js" ], "run_at": "document_end", "all_frames": false } ], "web_accessible_resources": [ { "resources": [ "icons\/*.png", "libs\/pdf.min.js", "libs\/pdf.worker.min.js", "libs\/mammoth.browser.min.js", "pdf-processor.js" ], "matches": [ "https:\/\/*\/*", "http:\/\/localhost\/*" ] } ], "icons": { "16": "icons\/icon-16.png", "24": "icons\/icon-24.png", "32": "icons\/icon-32.png", "48": "icons\/icon-48.png", "96": "icons\/icon-96.png", "128": "icons\/icon-128.png" }, "author": "Your Name\/Company", "homepage_url": "https:\/\/your-website.com", "short_name": "Interview Copilot", "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'; connect-src 'self' https:\/\/api.openai.com https:\/\/api.anthropic.com https:\/\/api.perplexity.ai https:\/\/api.stripe.com https:\/\/interview-copilot-blond.vercel.app https:\/\/*.vercel.app;" }, "minimum_chrome_version": "88", "commands": { "toggle-listening": { "suggested_key": { "default": "Ctrl+Shift+L", "mac": "Command+Shift+L" }, "description": "Toggle audio listening" }, "generate-response": { "suggested_key": { "default": "Ctrl+Shift+G", "mac": "Command+Shift+G" }, "description": "Generate AI response" }, "hide-overlay": { "suggested_key": { "default": "Ctrl+Shift+H", "mac": "Command+Shift+H" }, "description": "Hide\/show overlay" } } }