Commit Graph

4 Commits

  • Integrate JailJS for CSP-restricted execution in browser extension
    Major changes:
    - Migrate browser-extension to use web-ui package (85% code reduction)
    - Add JailJS content script with ES6+ transform support
    - Expose DOM constructors (Event, KeyboardEvent, etc.) to JailJS
    - Support top-level await by wrapping code in async IIFE
    - Add returnFile() support in JailJS execution
    - Refactor KeyStore into pluggable storage-adapter pattern
    - Make ChatPanel configurable with sandboxUrlProvider and additionalTools
    - Update jailjs to 0.1.1
    
    Files deleted (33 duplicate files):
    - All browser-extension components, dialogs, state, tools, utils
    - Now using web-ui versions via @mariozechner/pi-web-ui
    
    Files added:
    - packages/browser-extension/src/content.ts (JailJS content script)
    - packages/web-ui/src/state/storage-adapter.ts
    - packages/web-ui/src/state/key-store.ts
    
    Browser extension now has only 5 source files (down from 38).
  • feat: add cross-browser extension with AI reading assistant
    - Create Pi Reader browser extension for Chrome/Firefox
    - Chrome uses Side Panel API, Firefox uses Sidebar Action API
    - Supports both browsers with separate manifests and unified codebase
    - Built with mini-lit components and Tailwind CSS v4
    - Features model selection dialog with Ollama support
    - Hot reload development server watches both browser builds
    - Add useDefineForClassFields: false to fix LitElement reactivity