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>
29 lines
880 B
JSON
29 lines
880 B
JSON
{
|
|
"name": "opendia-extension",
|
|
"version": "1.1.0",
|
|
"description": "Connect your browser to AI models",
|
|
"scripts": {
|
|
"build": "node build.js",
|
|
"build:chrome": "node build.js chrome",
|
|
"build:firefox": "node build.js firefox",
|
|
"dev:chrome": "npm run build:chrome && echo 'Load dist/chrome in Chrome'",
|
|
"dev:firefox": "npm run build:firefox && web-ext run --source-dir=dist/firefox",
|
|
"package:chrome": "npm run build:chrome && cd dist/chrome && zip -r ../opendia-chrome.zip .",
|
|
"package:firefox": "npm run build:firefox && cd dist/firefox && web-ext build --overwrite-dest"
|
|
},
|
|
"keywords": [
|
|
"webextension",
|
|
"mcp",
|
|
"browser-automation"
|
|
],
|
|
"author": "Aaron J Mars",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"webextension-polyfill": "^0.12.0"
|
|
},
|
|
"devDependencies": {
|
|
"fs-extra": "^11.3.0",
|
|
"web-ext": "^8.8.0"
|
|
}
|
|
}
|