NeetLeet is a Chrome extension that integrates NeetCode solutions into LeetCode problem pages. It enhances your coding interview preparation by providing quick access to high-quality solutions directly from the problem page.
- NeetCode Integration: Adds a "π View NeetCode Solution" button to LeetCode problem pages if a corresponding NeetCode solution exists.
- Automatic Slug Mapping: Automatically maps the LeetCode problem slug to the NeetCode solution URL.
- Optimized for Chrome: Seamless integration as a Chrome extension.
- Efficient Performance: Ensures the button is injected only if a valid solution exists.
git clone https://github.com/daily-coding-problem/neetleet.git
cd neetleet
Use pnpm
to install dependencies:
pnpm install
Ensure the source files are properly built for deployment:
pnpm build
- Open Chrome and navigate to
chrome://extensions/
. - Enable Developer Mode.
- Click Load unpacked and select the
dist/
folder from the repository.
To execute the unit tests:
pnpm run test:unit
To run end-to-end tests using Puppeteer in a Dockerized environment:
docker-compose up
Ensure code quality with ESLint:
pnpm run lint
neetleet/
βββ src/ # Source code for the extension
β βββ content.js # Main content script
β βββ background.js # Background script for Chrome runtime
β βββ manifest.json # Chrome extension manifest
β βββ ...other files
βββ tests/ # Test files
β βββ unit/ # Unit tests
β βββ e2e/ # End-to-end tests
β βββ mocks/ # Mock files for testing
βββ Dockerfile # Dockerfile for running Puppeteer tests
βββ docker-compose.yml # Docker Compose configuration
βββ package.json # Project dependencies and scripts
βββ README.md # Project documentation
βββ ...other files
-
Content Script:
- Extracts the problem slug from the current LeetCode URL.
- Sends a message to the background script to verify if a NeetCode solution exists.
-
Background Script:
- Validates the problem slug by sending a request to
https://neetcode.io/solutions/<slug>
.
- Validates the problem slug by sending a request to
-
Button Injection:
- If a solution exists, a "π View NeetCode Solution" button is injected into the DOM, linking to the NeetCode solution.
We welcome contributions! Follow these steps to contribute:
- Fork the repository.
- Create a new branch:
git checkout -b feature-name
. - Commit your changes:
git commit -m 'Add a new feature'
. - Push to the branch:
git push origin feature-name
. - Open a Pull Request.
This project is licensed under the MIT License.
- NeetCode for his excellent solutions.
- LeetCode for hosting challenging coding problems.
- Puppeteer for enabling automated browser testing.
For any questions or suggestions, feel free to open an issue or reach out at nicholas.adamou@outlook.com.