{"id":43250894,"url":"https://github.com/cod3ddot/nibblet","last_synced_at":"2026-02-01T13:05:13.869Z","repository":{"id":183892149,"uuid":"428582782","full_name":"Cod3dDOT/nibblet","owner":"Cod3dDOT","description":"Manifest V3 browser extension for remote script injection.","archived":false,"fork":false,"pushed_at":"2025-05-27T05:50:47.000Z","size":1343,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-27T06:36:08.512Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Cod3dDOT.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"COPYING","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}},"created_at":"2021-11-16T08:55:04.000Z","updated_at":"2025-05-27T05:50:50.000Z","dependencies_parsed_at":null,"dependency_job_id":"43526e2c-41ec-4a14-b25d-da1e45beca5f","html_url":"https://github.com/Cod3dDOT/nibblet","commit_stats":null,"previous_names":["cod3ddot/exploitutils","cod3ddot/nibblet"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Cod3dDOT/nibblet","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Cod3dDOT%2Fnibblet","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Cod3dDOT%2Fnibblet/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Cod3dDOT%2Fnibblet/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Cod3dDOT%2Fnibblet/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Cod3dDOT","download_url":"https://codeload.github.com/Cod3dDOT/nibblet/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Cod3dDOT%2Fnibblet/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28978780,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-01T12:13:08.691Z","status":"ssl_error","status_checked_at":"2026-02-01T12:13:08.356Z","response_time":56,"last_error":"SSL_read: 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":[],"created_at":"2026-02-01T13:05:12.783Z","updated_at":"2026-02-01T13:05:13.862Z","avatar_url":"https://github.com/Cod3dDOT.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![cod3d.dev](./docs/github-header.gif)](https://github.com/cod3ddot/nibblet)\n\n# Nibblet\n\nManifest V3 browser extension for remote script injection.\n\n## Quick Setup\n\n1. Install dependencies:\n```bash\nbun install\n```\n\n2. Setup environment variables:\n```bash\n# Follow .env.example to create .env file with:\n# CHROME_PATH=                  # overrides path to chromium-based browsers\n# FIREFOX_PATH=                 # overrides path to the firefox browser\nEXTENSION_MESSAGING_IDENTIFIER= # specifies messaging prefix for events\n```\n\n3. Start development:\n```bash\nbun dev\n```\n\n## Project Structure\n\n```\n├── entrypoints/\n│   ├── popup/                  # Next.js application pages and routes\n│   │   ├── components/         # Reusable UI components\n│   │   ├── screens/            # Components for different \"pages\"\n│   │   ├── styles/             # Styling\n│   │   ├── app.tsx             # Main app\n│   │   ├── index.html          # WXT popup entrypoint\n│   │   └── main.tsx            # Solid.JS entrypoint\n│   ├── background.ts           # Event bridge\n│   ├── content.ts              # Sandboxed content script\n│   └── main-world-injector.ts  # Main world, registered content script\n├── lib/\n│   ├── interfaces/             # Well, interfaces\n│   ├── messaging/              # Anything pertinent to events\n│   ├── repo.ts                 # Provides a repository to work with script registries\n│   └── storage.ts              # Local extension storage using WXTs apis\n└── wxt.config.ts               # WXT + manifest.json config\n```\n\n## Core Technologies\n\n- **Framework \u0026 Runtime**\n  - [WXT](https://wxt.dev/)\n  - [SolidJS](https://www.solidjs.com/)\n  - [Bun](https://bun.sh) as JavaScript runtime and package manager\n\n- **Styling \u0026 Design**\n  - [TailwindCSS v4](https://tailwindcss.com)\n  - [Geist \u0026 Geist Mono](https://vercel.com/font)\n\n- **Development Tools**\n  - [Biome](https://biomejs.dev) for linting \u0026 formatting\n  - [Lefthook](https://github.com/evilmartians/lefthook) for Git hooks\n  - Conventional commits\n\n## Development Tools\n\n### Available Commands\n- `bun run dev` - Start development build\n- `bun run build` - Build production bundle\n- `bun run lint` - Run Biome linter\n- `bun run lint:fix` - Fix linting issues with Biome\n- `bun run commit` - Interactive commit with conventional commit standards\n\n## Contributing\n\n1. Fork the repository\n2. Create your feature branch (`git checkout -b feature/amazing-feature`)\n3. Commit your changes using conventional commits (`bun run commit`)\n4. Push to the branch (`git push origin feature/amazing-feature`)\n5. Open a Pull Request\n\n## License\n\nThis project strives to be REUSE compliant.\n\nGenerally:\n- Documentation is licensed under CC-BY-NC-SA-4.0\n- Code is licensed under AGPL-3.0-or-later\n- Config files are under CC0-1.0\n\n```\n    Nibblet: manifest V3 browser extension for remote script injection.\n    Copyright (C) 2025  cod3ddot@proton.me\n\n    This program is free software: you can redistribute it and/or modify\n    it under the terms of the GNU Affero General Public License as published\n    by the Free Software Foundation, either version 3 of the License, or\n    (at your option) any later version.\n\n    This program is distributed in the hope that it will be useful,\n    but WITHOUT ANY WARRANTY; without even the implied warranty of\n    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n    GNU Affero General Public License for more details.\n\n    You should have received a copy of the GNU Affero General Public License\n    along with this program.  If not, see \u003chttps://www.gnu.org/licenses/\u003e.\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcod3ddot%2Fnibblet","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcod3ddot%2Fnibblet","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcod3ddot%2Fnibblet/lists"}