- Local tag is now clickable - checks if document exists on server by ID
or filename, and re-links if found
- Delete from server now archives the proxy instead of removing it,
making it a local-only document that can be re-uploaded
- Added first-run pin reminder banner to help users pin the extension
- Added issue report modal with context sections (extension info, browser
info, document status, recent errors) and copy to clipboard as Markdown
- Added clearServerFields and attachServerDocument functions to pdf-queue
- Improved local tag styling with hover states and visual feedback
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
- Replace token-based auth with HTTP Basic Authentication per Binect API v1 spec
- Improve PDF detection: check current tab first, then background service, fallback to recent downloads
- Add password visibility toggle in login form
- Add extensive debug logging throughout for troubleshooting
- Update manifest with alarms, activeTab permissions and <all_urls> host permission
- Add documentation files and development helper scripts
- Add Binect API specs for reference
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Added 'default_locale': 'en' to manifest.json to resolve Chrome error
when loading extension with _locales directory.
Error was: 'Lokalisierung wurde verwendet, in der Manifest-Datei war
jedoch kein Wert für default_locale angegeben'
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
Implements all requirements from ProductRequirementsDocument.md:
- PDF detection via Chrome Downloads API
- Secure credential storage with AES-GCM encryption
- Binect API integration for PDF uploads
- Popup UI with Binect branding
- Local transfer tracking (500 entry cap)
- Help page with tracking view and CSV export
- 60-day credential retention with auto-expiry
- Accessibility compliance (WCAG 2.1 AA)
Technical implementation:
- Chrome Extension Manifest V3
- TypeScript with strict mode
- Webpack build system
- Jest test suite (22/22 passing)
- ESLint configured (0 errors)
Build output: 13 KB total (production minified)
Test coverage: crypto, pdf-detector, tracker, binect-api
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>