https://github.com/azlibdar/pride
Pride: Minimal Todo List - No sign-ups, no hassle—just pure productivity.
https://github.com/azlibdar/pride
chrome-extension minimal productivity todolist
Last synced: 6 months ago
JSON representation
Pride: Minimal Todo List - No sign-ups, no hassle—just pure productivity.
- Host: GitHub
- URL: https://github.com/azlibdar/pride
- Owner: azlibdar
- License: mit
- Created: 2024-05-25T04:28:35.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-05-26T07:36:36.000Z (about 1 year ago)
- Last Synced: 2024-12-02T09:07:56.614Z (6 months ago)
- Topics: chrome-extension, minimal, productivity, todolist
- Language: CSS
- Homepage: https://chromewebstore.google.com/detail/imabkchdfnonlkmdocedbnfgbmcpbopn
- Size: 70.3 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Pride: Minimal Todo List
A Chrome browser extension - No sign-ups, no hassle—just pure productivity.
## Features 🐧
- **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.
## Screenshots
![]()
## Download
You can download the Pride: Minimal Todo List extension from the Chrome Web Store by clicking the button below:[Download from Chrome Web Store](https://chromewebstore.google.com/detail/imabkchdfnonlkmdocedbnfgbmcpbopn)
## Contributing
We welcome contributions from the community! Here’s a step-by-step guide to help you get started:
### 1. Fork the Repository
First, fork the repository to your GitHub account by clicking the "Fork" button at the top right of the repository page.### 2. Clone the Forked Repository
Clone the forked repository to your local machine:```shell
git clone https://github.com/your-username/pride.git
cd pride
```### 3. Create a New Branch
Create a new branch for your work. Use a descriptive name for your branch based on the type of contribution:```shell
git checkout -b feature/new-task-feature
```### 4. Make Changes and Update Version
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:```json
"version": "1.0.1",
```### 5. Commit and Push Changes
Commit your changes with a descriptive message. Tag your commit with the version number:```shell
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.
### 6. Create a Pull Request
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.### 7. Wait 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!