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": "Deep Research",
"description": "Your AI Research Assistant",
"version": "2.0.1",
"default_locale": "en",
"permissions": [
"storage",
"contextMenus",
"commands"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
],
"css": [
"style.css"
]
}
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup\/popup.html",
"default_icon": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
},
"icons": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"web_accessible_resources": [
{
"resources": [
"icons\/icon16.png",
"icons\/icon24.png",
"icons\/icon32.png",
"icons\/icon48.png",
"icons\/icon128.png",
"icons\/copy.svg",
"icons\/close.svg",
"icons\/closeClicked.svg",
"icons\/regenerate.svg",
"fonts\/*",
"Instructions.html",
"instructions.js",
"style.css"
],
"matches": [
"<all_urls>"
]
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'",
"sandbox": "sandbox allow-scripts allow-forms allow-popups allow-modals; script-src 'self' 'unsafe-inline' https:\/\/cdn.jsdelivr.net; object-src 'self'; font-src 'self' https:\/\/cdn.jsdelivr.net"
},
"browser_specific_settings": {
"edge": {
"browser_action_next_to_addressbar": true
}
},
"commands": {
"toggle-chat": {
"suggested_key": {
"default": "Ctrl+Shift+D",
"mac": "Command+Shift+D",
"windows": "Ctrl+Shift+D"
},
"description": "Toggle the chat window."
}
},
"host_permissions": [
"https:\/\/api.openai.com\/*",
"https:\/\/api.deepseek.com\/*"
]
}