A beautiful Chrome extension to browse, search, categorize, and manage your GitHub starred repositories.
- 🌙 Dark glassmorphism UI — premium dark theme with smooth animations
- 🔍 Search & filter — find repos by name, description, language, or topic
- 🏷️ Categories — organize starred repos into custom categories/tags
- 📊 Sort — by recently starred, most stars, name, or recently updated
- ⭐ Unstar — remove stars directly from the extension
- 💾 Cached — instant loading with local cache, background refresh
- ⚙️ Settings — manage token and categories
- Clone or download this repository
- Open Chrome and navigate to
chrome://extensions - Enable Developer mode (top-right toggle)
- Click Load unpacked and select this directory
- Click the extension icon in the toolbar
- Enter your GitHub Personal Access Token (requires
public_reposcope) - Start managing your stars! 🚀
The extension popup features a dark-themed card-based interface with search, language filter, category chips, and sort controls.
stars-manager/
├── manifest.json # Chrome extension manifest (V3)
├── popup/
│ ├── index.html # Main popup UI
│ ├── styles.css # Dark glassmorphism styles
│ └── app.js # Core application logic
├── options/
│ ├── index.html # Settings page
│ ├── styles.css # Settings page styles
│ └── app.js # Token management logic
├── icons/
│ ├── icon16.png
│ ├── icon48.png
│ └── icon128.png
└── README.md
MIT