WEB NOTES is a lightweight Chrome extension that allows users to save URLs and Notes for later viewing.
You can manually enter links, store them locally, and open them anytime in a new tab.
- Save URLs & Notes manually
- Save using Enter key
- Persistent storage using
localStorage - View saved links instantly
- Clear all saved links
- Opens saved links in a new tab
- HTML
- CSS
- JavaScript
- Chrome Extension Manifest V3
web-notes/
│── manifest.json
│── index.html
│── script.js
│── style.css
│── icon.png
- Open Chrome
- Go to
chrome://extensions/ - Enable Developer mode (top right)
- Click Load unpacked
- Select the project folder
The extension will now appear in your toolbar.
- URLs are stored in the browser using
localStorage - When the popup opens, stored URLs are loaded and rendered
- Clicking a saved URL opens it in a new tab
- The clear button removes all stored URLs
- This extension stores data locally in your browser only.
- Data is not synced across devices.
- Clearing browser storage will remove saved URLs.
- Prevent duplicate URLs
- Add delete button for individual links
- Use
chrome.storageinstead oflocalStorage - Add favicon previews
Built as a learning project to understand:
- Chrome Extensions
- DOM manipulation
- Local storage
- Event handling
This project is for educational purposes.