A Chrome extension that replaces the default New Tab page with a bookmark-first navigation dashboard. It uses a folder tree on the left and a bookmark card grid on the right, optimized for browsing, organizing, and searching your bookmarks.
- Bookmark tree navigation: Expand/collapse multi-level folders and persist the expanded state.
- Card-based bookmark grid: Display bookmarks as cards and load site favicons automatically.
- Context menu management: Edit/delete bookmarks; create subfolders, rename, and delete folders.
- Custom delete confirmation: Built-in confirmation modal for deleting bookmarks/folders, with folder item counts.
- Drag & drop organization: Reorder bookmarks within the grid or drag them into folders in the tree.
- Folder drag & drop: Reorder folders and nest them under other folders.
- Real-time search: Filter results as you type and show the parent folder tag on result cards.
- Theme modes: Light, dark, and system themes.
- Empty state guidance: Helpful prompts when a folder has no items.
- Vanilla JavaScript
- Tailwind CSS
- Chrome Extension APIs
chrome.bookmarkschrome.runtimechrome_url_overrides
- Manifest V3
bookmarks: Read/create/update/delete bookmarks and folders, including changes required by drag-and-drop.favicon: Read site favicons for bookmark cards.
- All bookmark data is read and processed locally in your browser.
- No bookmark data is collected or uploaded, and no remote backend is required.
- Clone the repo:
git clone https://github.com/atay123/bookmarkNav.git
cd bookmarkNav- Install dependencies:
npm install- Watch Tailwind build in dev:
npm run dev- Build CSS for release:
npm run build- Open
chrome://extensions/ - Enable
Developer mode - Click
Load unpacked - Select the project root folder
- Open a new tab to see the extension
bookmarkNav/
├── manifest.json
├── newtab.html
├── script.js
├── style.css
├── src/
│ └── input.css
├── tailwind.config.js
├── package.json
├── package-lock.json
├── icon.png
├── README.md
└── README.zh-CN.md
- Left-click a bookmark card: Open the bookmark.
- Left-click a folder: Switch the right-side view; click the arrow to expand/collapse the tree.
- Right-click a bookmark card: Edit or delete the bookmark.
- Right-click a folder: Create a subfolder, rename, or delete the folder.
- Drag a bookmark card: Reorder it or move it into a folder in the tree.
- Drag a folder: Reorder it or change nesting.
- Manifest V3 compliant.
- No inline scripts.
- All UI events are bound dynamically via JavaScript.
- Bookmark tree renders and expands correctly.
- Context menus open correctly.
- UI refreshes correctly after editing bookmarks and folders.
- Delete confirmation modals behave correctly and results stay in sync after deletion.
- Bookmark drag-and-drop ordering and cross-folder moves work.
- Search results and clearing search switch views correctly.
Special thanks to LINUX DO for their support and inspiration.
MIT License. See LICENSE.