A Chrome extension that provides seamless access to MindStudio's AI Agents directly from any webpage. Currently in beta.
• Side Panel Integration: Native Chrome side panel for persistent access
• Smart Context: Automatically captures relevant page content and selections
• Cross-Origin Support: Works across different websites
• Customizable Settings: Personalize your experience
- Go to the Releases page of this repository
- Download the
mindstudio-chrome-extension.zip
file from the latest release - Unzip the downloaded file
- Follow the "Loading in Chrome" instructions below
-
Install dependencies:
npm install
-
Build the extension:
npm run dev # Watch mode for development # or npm run build # Production build with type checking and linting
-
Follow the "Loading in Chrome" instructions below
- Open
chrome://extensions/
- Enable "Developer mode" in the top-right corner
- Click "Load unpacked" and select either:
- The
dist
folder (for development setup) - The unzipped extension folder (for release version)
- The
src/
├── assets/ # Static assets and resources
├── background/ # Service worker & background processes
├── content/ # Content scripts and UI components
├── shared/ # Shared utilities, services, and types
└── sidepanel/ # Chrome side panel implementation
npm run dev
: Watch mode for developmentnpm run build
: Production build with checksnpm run type-check
: TypeScript type checkingnpm run lint
: Check for linting issuesnpm run lint:fix
: Fix linting issuesnpm run format
: Format code with Prettiernpm run format:check
: Check code formatting
- Node.js >= 14.0.0
- npm >= 6.0.0
- VS Code recommended
- Install ESLint and Prettier extensions
- Use Chrome DevTools for extension debugging
- Enable developer mode in Chrome extensions
- Fork the repository
- Create a feature branch
- Make your changes
- Ensure all checks pass (
npm run build
) - Open a Pull Request
MIT License