Multi-device cloud-synced link manager.
ByteVault is a lightweight but powerful Chrome Extension and backend service that allows you to seamlessly save, manage, and synchronize your web links across multiple devices.
- ☁️ Cloud Synchronization: Access your saved links instantly from any device.
- 🔒 Secure & Private: Protected via JWT authentication, rate limiting, and secure HTTP headers (Helmet).
- 🔌 Chrome Extension: Quick, easy access to your vault directly from your browser toolbar.
- 📊 Dashboard Views: Manage, search, and organize your saved links with a clean, modern interface.
- 📤 Data Export: Export your saved links and account data anytime.
- 🛡️ Session Management: Track and manage your active login sessions across devices.
Extension (Frontend)
- Manifest V3 Chrome Extension
- Vanilla JavaScript, HTML & Custom CSS
- Modern UI with intuitive state management
Backend (API)
- Node.js & Express
- PostgreSQL
- Zod (Verification), Helmet & Express Rate Limiter (Security)
- RESTful principles with JWT Authentication (Access & Refresh Tokens)
- Node.js (v18+)
- PostgreSQL Database URL
- Google Chrome (or any Chromium-based browser)
- Open the
backenddirectory:cd backend - Install dependencies:
npm install
- Set your environment variables in a
.envfile within thebackenddirectory:PORT=5252 NODE_ENV=development DATABASE_URL=postgresql://your_db_url JWT_ACCESS_SECRET=your_access_secret JWT_REFRESH_SECRET=your_refresh_secret JWT_ACCESS_EXPIRES_IN=1h JWT_REFRESH_EXPIRES_IN=7d FRONTEND_URL=chrome-extension://<your_extension_id>
- Start the server:
The API server will run on
npm run dev
http://localhost:5252.
- Open Google Chrome and navigate to
chrome://extensions/. - Enable Developer mode using the toggle in the top right corner.
- Click on the Load unpacked button and select the
extensiondirectory from this repository. - Pin the ByteVault extension to your toolbar and click the icon to get started!
(Optional) Once the extension is loaded, copy its ID from your Chrome Extensions page and update the FRONTEND_URL in your backend .env file for enhanced security via CORS, then restart the server.
ByteVault/
├── backend/ # REST API built with Express & PostgreSQL
└── extension/ # Chrome Extension built with Manifest V3
- Ankit Barik - @ankitkumarbarik
- Mohammed Hasanfatta - @hasanfattamd
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.