mirror of
https://github.com/aaronjmars/opendia.git
synced 2025-12-29 16:16:00 +00:00
- Fixed tab_list timeout issue on Chrome by increasing content script timeout from 1s to 3s - Updated all package.json and manifest files to version 1.1.0 - Set check_content_script default to false to avoid timeouts - Enhanced DXT build script with comprehensive installation guide and GitHub repo links - Fixed OpenDia logo path in README.md - Updated tool examples and documentation to reflect timeout improvements 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
44 lines
818 B
JSON
44 lines
818 B
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "OpenDia",
|
|
"version": "1.1.0",
|
|
"description": "Connect your browser to AI models",
|
|
"icons": {
|
|
"16": "icon-16.png",
|
|
"32": "icon-32.png",
|
|
"48": "icon-48.png",
|
|
"128": "icon-128.png"
|
|
},
|
|
"permissions": [
|
|
"tabs",
|
|
"activeTab",
|
|
"storage",
|
|
"scripting",
|
|
"webNavigation",
|
|
"notifications",
|
|
"bookmarks",
|
|
"history"
|
|
],
|
|
"host_permissions": [
|
|
"<all_urls>"
|
|
],
|
|
"background": {
|
|
"service_worker": "background.js"
|
|
},
|
|
"action": {
|
|
"default_popup": "popup.html",
|
|
"default_title": "OpenDia"
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["<all_urls>"],
|
|
"js": ["content.js"],
|
|
"run_at": "document_idle"
|
|
}
|
|
],
|
|
"externally_connectable": {
|
|
"ids": ["*"],
|
|
"matches": ["http://localhost/*"]
|
|
}
|
|
}
|