Inspect and view changes in EVE AI: Your Customizable, Private, and Powerful AI Assistant source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "EVE AI: Your Customizable, Private, and Powerful AI Assistant",
"version": "2.2.6",
"permissions": [
"activeTab",
"storage",
"sidePanel"
],
"host_permissions": [
"<all_urls>",
"https://eve-ai-b27b2140882d.herokuapp.com/*",
"https://fonts.googleapis.com/*"
],
"action": {
"default_title": "Eve"
},
"background": {
"service_worker": "background.js"
},
"icons": {
"16": "icons/icon1.png",
"48": "icons/icon1.png",
"128": "icons/icon1.png"
},
"side_panel": {
"default_path": "sidepanel.html"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"contentScript.js"
],
"run_at": "document_idle"
}
],
"web_accessible_resources": [
{
"resources": [
"sidepanel.html",
"sidepanel.js",
"sidepanel.css",
"modalFunctions.js",
"config.js"
],
"matches": [
"<all_urls>"
]
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'none'; style-src 'self' https://fonts.googleapis.com; font-src 'self' https://fonts.gstatic.com; connect-src 'self' https://eve-ai-b27b2140882d.herokuapp.com http://localhost:5000 data:; img-src 'self' data:; frame-src 'self';"
}
}