{"id":27816951,"url":"https://github.com/0xtbug/redet","last_synced_at":"2026-04-25T21:33:38.020Z","repository":{"id":290141292,"uuid":"973496862","full_name":"0xtbug/ReDet","owner":"0xtbug","description":"A powerful Chrome extension that detects and analyzes Google reCAPTCHA implementations on websites.","archived":false,"fork":false,"pushed_at":"2025-04-27T05:52:45.000Z","size":0,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-27T06:30:26.512Z","etag":null,"topics":["chrome-extensions","detection","recaptcha","recaptcha-v2","recaptcha-v3"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","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/0xtbug.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}},"created_at":"2025-04-27T05:41:10.000Z","updated_at":"2025-04-27T06:01:00.000Z","dependencies_parsed_at":"2025-04-27T06:30:30.147Z","dependency_job_id":"0a6d2b1d-2b02-4858-b375-f0cd5591a93d","html_url":"https://github.com/0xtbug/ReDet","commit_stats":null,"previous_names":["0xtbug/redet"],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0xtbug%2FReDet","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0xtbug%2FReDet/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0xtbug%2FReDet/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0xtbug%2FReDet/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/0xtbug","download_url":"https://codeload.github.com/0xtbug/ReDet/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251888972,"owners_count":21660261,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["chrome-extensions","detection","recaptcha","recaptcha-v2","recaptcha-v3"],"created_at":"2025-05-01T14:26:13.676Z","updated_at":"2026-04-25T21:33:37.985Z","avatar_url":"https://github.com/0xtbug.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ReDet - reCAPTCHA Detector\n\u003cdiv style=\"display: flex; align-items: center; gap: 10px;\"\u003e\n  \u003cimg src=\"https://github.com/user-attachments/assets/f7ad6e8a-88c4-4fac-afd3-331020913597\" alt=\"image\" width=\"80\" height=\"auto\"\u003e\n  \u003cimg src=\"https://github.com/user-attachments/assets/4cb747ae-d081-42fa-a359-f213bbc0a9f2\" alt=\"image\" width=\"420\" height\n\u003c/div\u003e\n  \nA powerful Chrome extension that detects and analyzes Google reCAPTCHA implementations on websites.\n\n![Version](https://img.shields.io/badge/version-1.1-blue)\n![Build](https://img.shields.io/badge/build-27--04--2025-green)\n## Features\n\n- 🔍 Detects both reCAPTCHA v2 and v3\n- 🚀 Real-time scanning of web pages\n- 💡 Enterprise reCAPTCHA detection\n- 📋 Easy site key copying\n- 🎨 Clean and modern UI\n\n## Installation\n\n1. Download the latest release from the [releases page](https://github.com/0xtbug/ReDet/releases)\n2. Open Chrome and navigate to `chrome://extensions/`\n3. Enable \"Developer mode\" in the top right\n4. Click \"Load unpacked\" and select the downloaded extension folder\n\n## Usage\n\n1. Click the extension icon in your browser toolbar\n2. Click \"Scan Page\" to detect reCAPTCHA on the current page\n3. View detailed information about detected reCAPTCHA implementations\n4. Copy site keys and configuration details with one click\n\n## Detection Features\n\n- **reCAPTCHA v2**\n  - Site key detection\n  - Enterprise implementation detection\n  - Full configuration details\n\n- **reCAPTCHA v3**\n  - Multiple site key detection\n  - Enterprise implementation detection\n  - Action parameters\n  - Configuration details\n\n## Development\n\n### Prerequisites\n\n- Chrome browser (latest version recommended)\n- Git\n\n### Setup for Development\n\n1. Clone the repository:\n```bash\ngit clone https://github.com/0xtbug/ReDet.git\ncd ReDet\n```\n\n2. Load the extension in Chrome:\n   - Open Chrome and go to `chrome://extensions/`\n   - Enable \"Developer mode\" in the top right\n   - Click \"Load unpacked\" and select the cloned directory\n\n3. Development workflow:\n   - Make changes to the source files\n   - Refresh the extension in `chrome://extensions/`\n   - Click the refresh icon on the extension card to apply changes\n\n### Project Structure\n\n```\nReDet/\n├── src/\n│   ├── views/          # UI components\n│   │   ├── popup/      # Extension popup interface\n│   │   │   ├── popup.html\n│   │   │   ├── popup.css\n│   │   │   └── popup.js\n│   │   └── icons/     # Extension icons\n│   ├── content/       # Content scripts\n│   │   └── content.js\n│   ├── controllers/   # Background scripts\n│   │   └── background.js\n│   └── models/        # Data models\n├── manifest.json      # Extension manifest\n└── build-date        # Version and build information\n```\n\n### Development Guidelines\n\n1. **Code Style**\n   - Use consistent indentation (2 spaces)\n   - Follow JavaScript ES6+ conventions\n   - Keep functions small and focused\n   - Add comments for complex logic\n\n2. **Testing**\n   - Test on different websites with various reCAPTCHA implementations\n   - Verify both v2 and v3 detection\n   - Check Enterprise reCAPTCHA detection\n   - Test on different Chrome versions\n\n3. **Building**\n   - No build step required\n   - Direct development in source files\n   - Chrome automatically reloads on file changes\n\n4. **Debugging**\n   - Use Chrome DevTools for debugging\n   - Check the Console for errors\n   - Inspect popup with right-click -\u003e Inspect\n   - Monitor background script in extension page\n\n## Contributing\n\n1. Fork the repository\n2. Create your feature branch (`git checkout -b feature/amazing-feature`)\n3. Commit your changes (`git commit -m 'Add some amazing feature'`)\n4. Push to the branch (`git push origin feature/amazing-feature`)\n5. Open a Pull Request\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n## Author\n\n**0xtbug**\n- GitHub: [@0xtbug](https://github.com/0xtbug)\n\n## Acknowledgments\n\n- Thanks to all contributors who have helped make this project better\n- Special thanks to the Chrome Extensions community\n\n## Version History\n\n- v1.1 (Current)\n  - Added Enterprise reCAPTCHA detection\n  - Improved UI/UX\n  - Better error handling\n  - Performance optimizations\n\n## Support\n\nIf you encounter any issues or have questions, please:\n1. Check the [Issues](https://github.com/0xtbug/ReDet/issues) page\n2. Create a new issue if your problem isn't already listed\n\n---\n\nBuilt with ❤️ by [0xtbug](https://github.com/0xtbug) \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F0xtbug%2Fredet","html_url":"https://awesome.ecosyste.ms/projects/github.com%2F0xtbug%2Fredet","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F0xtbug%2Fredet/lists"}