{"id":44298563,"url":"https://github.com/dodbrian/qr-fox","last_synced_at":"2026-02-11T01:21:53.959Z","repository":{"id":333770521,"uuid":"1138631167","full_name":"dodbrian/qr-fox","owner":"dodbrian","description":"Firefox WebExtension that displays a QR-code for the current page URL","archived":false,"fork":false,"pushed_at":"2026-02-07T20:45:38.000Z","size":749,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-02-08T03:29:17.926Z","etag":null,"topics":["firefox-addon","firefox-extension","qr-code","qrcode-generator","share-url","url-qr"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dodbrian.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":null,"cla":null}},"created_at":"2026-01-20T23:19:28.000Z","updated_at":"2026-02-07T20:45:31.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/dodbrian/qr-fox","commit_stats":null,"previous_names":["dodbrian/qr-fox"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/dodbrian/qr-fox","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dodbrian%2Fqr-fox","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dodbrian%2Fqr-fox/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dodbrian%2Fqr-fox/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dodbrian%2Fqr-fox/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dodbrian","download_url":"https://codeload.github.com/dodbrian/qr-fox/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dodbrian%2Fqr-fox/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29324013,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-11T00:34:26.354Z","status":"ssl_error","status_checked_at":"2026-02-11T00:34:09.494Z","response_time":65,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["firefox-addon","firefox-extension","qr-code","qrcode-generator","share-url","url-qr"],"created_at":"2026-02-11T01:21:53.253Z","updated_at":"2026-02-11T01:21:53.934Z","avatar_url":"https://github.com/dodbrian.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# QR-Fox\n\n[![CI](https://github.com/dodbrian/qr-fox/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/dodbrian/qr-fox/actions/workflows/ci.yml)\n\nA lightweight Firefox WebExtension that generates QR codes for the current page URL. Built with TypeScript, HTML, and CSS with zero runtime dependencies.\n\n## Features\n\n- **One-click QR code generation** for any webpage\n- **Keyboard shortcut** (Alt+Q) for quick access\n- **Copy to clipboard** as PNG image\n- **Download QR code** as PNG file\n- **Zero external dependencies** at runtime\n- **Privacy-focused** - all processing happens locally, no data leaves your browser\n- **Minimal permissions** - only uses `activeTab` permission\n\n## Screenshot\n\n![QR-Fox Extension Popup](docs/screenshot.png)\n\n## Installation\n\n### Quick Install (Recommended)\n\n[![Get the Add-on](docs/get-the-addon-178x60px.dad84b42.png)](https://addons.mozilla.org/en-US/firefox/addon/qr-fox/)\n\nClick the badge above to visit the official Firefox Add-ons page and install QR-Fox directly in your browser.\n\n### Install from Source (For Developers)\n\n1. Install Node.js 20+\n2. Clone this repository:\n   ```bash\n   git clone https://github.com/dodbrian/qr-fox.git\n   cd qr-fox\n   ```\n3. Install dependencies:\n   ```bash\n   npm install\n   ```\n4. Build the extension:\n   ```bash\n   npm run build\n   ```\n5. Load in Firefox:\n   - Navigate to `about:debugging#/runtime/this-firefox`\n   - Click \"Load Temporary Add-on\"\n   - Select the manifest file in the `dist/` directory\n\n### Build Package\n\n```bash\nnpm run pkg\n```\n\nThis creates a signed `.xpi` package in `web-ext-artifacts/` that can be installed in Firefox.\n\n## Usage\n\n1. **Click the toolbar icon** or press **Alt+Q** on any webpage\n2. A popup displays the QR code for the current URL\n3. **Copy** the QR code as PNG to clipboard\n4. **Download** the QR code as a PNG file\n\n## Development\n\n### Commands\n\n| Command            | Description                               |\n| ------------------ | ----------------------------------------- |\n| `npm run build`    | Build extension to `dist/`                |\n| `npm run start`    | Build and launch Firefox with extension   |\n| `npm test`         | Run test suite                            |\n| `npm run lint`     | Check code style                          |\n| `npm run format`   | Format code with Prettier                 |\n| `npm run validate` | Run all checks (format, lint, test, i18n) |\n| `npm run pkg`      | Validate and create `.xpi` package        |\n\n### Project Structure\n\n```\nqr-fox/\n├── src/\n│   ├── background/      # Background script\n│   ├── popup/           # Popup UI and QR generation logic\n│   ├── icons/           # Extension icons\n│   └── manifest.json    # Extension manifest\n├── scripts/             # Build and utility scripts\n├── __tests__/           # Jest test suite\n└── dist/                # Compiled extension (generated)\n```\n\n### Tech Stack\n\n- **TypeScript** - Type-safe development\n- **ES Modules** - Modern JavaScript module system\n- **Jest** - Testing framework with coverage\n- **ESLint** - Code quality and style enforcement\n- **Prettier** - Code formatting\n- **web-ext** - Firefox extension tooling\n\n## Helpful Resources\n\nFor developers interested in extending or contributing to QR-Fox, here are some valuable resources:\n\n- [Mozilla Add-on Developer Hub](https://addons.mozilla.org/en-US/developers/) - Resources for extension development, publishing, and managing your extensions on addons.mozilla.org\n- [Mozilla WebExtensions Documentation](https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions) - Comprehensive guides and references for building Firefox extensions with the WebExtensions API\n- [Extension Signing and Distribution Overview](https://extensionworkshop.com/documentation/publish/signing-and-distribution-overview/) - Details about Firefox's extension signing process and distribution options\n- [Add-ons Server API v4 Signing Documentation](https://mozilla.github.io/addons-server/topics/api/v4_frozen/signing.html) - Technical documentation for the API used to programmatically sign Firefox extensions\n\n## Contributing\n\nSee [AGENTS.md](./AGENTS.md) for detailed coding guidelines, build instructions, and contribution rules.\n\n### Quick Guidelines\n\n- Follow TypeScript strict mode\n- Add tests for new features\n- Run `npm run validate` before committing\n- Use conventional commit format: `\u003ctype\u003e(\u003cscope\u003e): \u003csubject\u003e`\n\n## License\n\nMIT License - see LICENSE file for details\n\n## Attributions\n\nQR code icon sourced from [Freepik](https://www.freepik.com)\n\n## Browser Compatibility\n\n- Firefox 115+\n- Manifest V3\n\n## Privacy\n\nQR-Fox processes all data locally in your browser. No information is transmitted to external servers. The extension only requests `activeTab` permission to read the current page URL.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdodbrian%2Fqr-fox","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdodbrian%2Fqr-fox","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdodbrian%2Fqr-fox/lists"}