A Chrome extension that allows you to organize your ChatGPT conversations into custom categories for better organization and retrieval.
Initial codebase was from https://github.com/JoaquinGiordano/netflix-custom-watchlists, a Chrome Extension that allows you to have custom watchlists in Netflix (like playlists in Youtube), allowing you to categorize titles you want to watch.
- Create custom categories for your ChatGPT chats
- Easily add chats to categories with one click
- View all categorized chats in a dedicated interface
- Quick access to your organized conversations
- Lol
- Click the extension icon or the "📁 My Categories" button in ChatGPT's sidebar
- Create categories like "Work", "Personal", "Learning", etc.
- In ChatGPT, hover over any chat in your chat history
- Click the 📁 button that appears next to the menu (...)
- Select which category to add the chat to
- View all your categorized chats in the extension page
- Remove chats from categories
- Delete entire categories
- Click any chat to open it directly in ChatGPT
├── manifest.json # Extension configuration
├── background.js # Service worker for data management
├── scripts/
│ ├── category-button.js # Adds category button to ChatGPT sidebar
│ └── add-to-category.js # Handles adding chats to categories
├── styles/
│ └── category-popup.css # Styling for category selection popup
├── categories/
│ ├── categories.html # Main extension page
│ ├── script.js # Extension page functionality
│ └── styles.css # Extension page styling
└── images/ # Extension icons
Categories are stored locally using Chrome's storage API:
{
id: 1,
name: "Work Projects",
chats: [
{
id: "unique-chat-id",
title: "Chat Title",
url: "https://chatgpt.com/c/...",
timestamp: "2024-01-15T10:30:00Z"
}
]
}The extension detects ChatGPT's chat list structure:
<a href="/c/chat-id" class="group __menu-item hoverable">
<div class="truncate">
<span dir="auto">Chat Title</span>
</div>
<div class="trailing">
<!-- Category button gets inserted here -->
<button class="__menu-item-trailing-btn">...</button>
</div>
</a>- All data is stored locally in your browser
- No data is sent to external servers
- Your chat history and categories remain completely private
storage: To save categories and chat references locallyunlimitedStorage: To store large amounts of categorized chats- Access to
chatgpt.comandchat.openai.com: To integrate with ChatGPT interface
- All Chromium based browsers (Chrome, Brave, etc)