This is a Chrome Extensions to help LeetCode users keep track of the LeetCode questions they would like to re-do in the future.
After users specified time period, the extension will remind the users to re-do the LeetCode question selected.
A: I would like to sort the questions by the time when it was added, and give me an alert when my reminder time is up, to re-do this LeetCode question. I didn't find any similar feature from "add to list", so I created a chrome extension for this specific feature.
Install the extension from here
This Chrome Extension currently supports:
- Save the re-do LeetCode questions
- Show the list of LeetCode questions by extension popup
- Check if your Node.js version is >= 14.
- Clone this repository.
- Run
npm run compose
- Load your extension on Chrome following:
- Access
chrome://extensions/
- Check
Developer mode
- Click on
Load unpacked extension
- Select the
build
folder.
- Access
- Happy hacking.
For step 3 above, you can use the following steps instead
- Run
npm install
to install the dependencies. - Run
npm start
After the development of your extension run the command
$ NODE_ENV=production npm run build
Now, the content of build
folder will be the extension ready to be submitted to the Chrome Web Store. Just take a look at the official guide to more infos about publishing.