A Chrome browser extension - No sign-ups, no hassle—just pure productivity.
- Minimal Design: Simple, user-friendly interface.
- No Sign-Ups Required: Start using immediately without any registration.
- Persistent Storage: Tasks are saved locally in your browser.
- Audio Feedback: Get a sound notification upon task completion.
- Automatic Task Deletion: Completed tasks are automatically deleted after 10 hours.
- Offline Functionality: Works seamlessly offline using local storage.
You can download the Pride: Minimal Todo List extension from the Chrome Web Store by clicking the button below:
Download from Chrome Web Store
We welcome contributions from the community! Here’s a step-by-step guide to help you get started:
First, fork the repository to your GitHub account by clicking the "Fork" button at the top right of the repository page.
Clone the forked repository to your local machine:
git clone https://github.com/your-username/pride.git
cd pride
Create a new branch for your work. Use a descriptive name for your branch based on the type of contribution:
git checkout -b feature/new-task-feature
Make the necessary changes to the code. Update the version in the manifest.json file. Use semantic versioning: x.y.z
where x
is the major version, y
is the minor version, and z
is the patch version. Increment the version number appropriately:
"version": "1.0.1",
Commit your changes with a descriptive message. Tag your commit with the version number:
git add .
git commit -m "Add new task feature and update version to 1.0.1"
git tag v1.0.1 -m "Version 1.0.1"
git push origin feature/new-task-feature
git push origin v1.0.1
Note: Changes to README.md do not require a version update.
Navigate to your forked repository on GitHub. Click on the Pull Requests
tab and then click the New Pull Request
button. Select your branch and submit the pull request for review.
Your pull request will be reviewed. You might be asked to make additional changes. Once your pull request is approved, it will be merged into the main repository.
Thank you for contributing to Pride: Minimal Todo List!