This is a simple Chrome extension to manage notes. It allows users to create, and delete notes that are stored using the chrome.storage.sync
API.
- Add new notes with a text and category.
- Delete notes.
- Search notes by text or category.
- Clone the repository.
- Open Chrome and navigate to
chrome://extensions/
. - Enable "Developer mode" in the top right corner.
- Click "Load unpacked" and select the directory where you cloned the repository.
- Click the extension icon in the Chrome toolbar to open the popup.
- Add a new note by entering text and selecting a category, then click "Save".
- Delete notes using the buttons next to each note.
- Use the search input to filter notes by text or category.
background.js
: Handles storing and retrieving notes fromchrome.storage.sync
.popup.js
: Manages the user interface for adding, editing, deleting, and searching notes.
Feel free to fork the repository and submit pull requests. If you find any bugs or have feature requests, please open an issue.