A minimalist, performance-focused new tab dashboard for Chrome. Features dynamic greetings, real-time weather, and cloud-hosted wallpapers.
- Zero-Bloat: Built with vanilla HTML, CSS, and JS. No frameworks.
- Dynamic Wallpapers: Fetches high-res images from a GitHub repository.
- Privacy-First: Weather data is fetched via Open-Meteo (no API keys required).
- Customizable: Remembers your name and preferred search engine.
- Glassmorphism UI: Modern, frosted-glass aesthetic using CSS backdrop-filter.
- Clone or download this repository.
- Open Chrome and navigate to
chrome://extensions. - Enable Developer Mode (top right toggle).
- Click Load Unpacked.
- Select the folder containing
manifest.json.
The wallpaper logic pulls from a public GitHub repository. To use your own images:
- Open
logic.js. - Edit the
REPO_CONFIGobject at the top:const REPO_CONFIG = { owner: 'YOUR_GITHUB_USERNAME', repo: 'YOUR_WALLPAPER_REPO_NAME', branch: 'main' };