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": "Vision Intelligence Pilot (VIP)", "version": "1.0.3", "description": "A private AI assistant that sees your screen and delivers accurate, context-based answers to your questions.", "permissions": [ "activeTab", "desktopCapture", "tabs", "storage" ], "host_permissions": [ "https:\/\/api.openai.com\/*" ], "background": { "service_worker": "background.js" }, "action": { "default_icon": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "default_popup": "options.html" }, "options_ui": { "page": "options.html", "open_in_tab": true }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "modules\/tts.js", "modules\/speech.js", "modules\/markdown.js", "modules\/chat-history.js", "modules\/screen-capture.js", "modules\/drag-handler.js", "modules\/typewriter.js", "content.js" ], "css": [ "styles.css" ], "run_at": "document_start" } ], "web_accessible_resources": [ { "resources": [ "icons\/*", "styles.css", "privacy.html", "modules\/*.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "content_security_policy": { "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'", "sandbox": "sandbox allow-scripts allow-forms allow-popups allow-modals; script-src 'self' 'unsafe-inline' 'unsafe-eval'; worker-src 'self'" } }