$git clone https://github.com/fatihsolhan/prompts-chat-extensionA browser extension that enhances prompts.chat with additional features and improvements. This extension is built on top of the amazing Awesome ChatGPT Prompts collection by [Fatih Kadir Akın](https://github.
| 1 | # prompts.chat Extension |
| 2 | |
| 3 | <p align="center"> |
| 4 | <img src="public/prompts-chat-img.png" alt="prompts.chat Extension Screenshot" width="800" style="max-width: 100%; height: auto;" /> |
| 5 | </p> |
| 6 | |
| 7 | A browser extension that enhances [prompts.chat](https://prompts.chat) with additional features and improvements. This extension is built on top of the amazing [Awesome ChatGPT Prompts](https://github.com/f/awesome-chatgpt-prompts) collection by [Fatih Kadir Akın](https://github.com/f). |
| 8 | |
| 9 | ## Features |
| 10 | |
| 11 | - ⚡️ **One-Click Run**: Instantly run prompts on ChatGPT, Claude, Gemini, GitHub Copilot, and more |
| 12 | - 🔍 **Smart Filtering**: Filter by category, tags, and prompt type (Text, Image, Audio, Video) |
| 13 | - 📝 **Variable Customization**: Edit prompt variables and preview changes in real-time |
| 14 | - 📌 **Side Panel Mode**: Keep prompts visible while you browse |
| 15 | - 🌓 **Dark/Light Mode**: Easy on the eyes, day or night |
| 16 | - 🎨 **Syntax Highlighting**: Beautiful JSON/YAML preview for structured prompts |
| 17 | - 📋 **Quick Copy**: One-click copy to clipboard |
| 18 | |
| 19 | ## Installation |
| 20 | |
| 21 | ### Chrome Web Store |
| 22 | |
| 23 | [Install from Chrome Web Store](https://chromewebstore.google.com/detail/promptschat/eemdohkhbaifiocagjlhibfbhamlbeej) |
| 24 | |
| 25 | ### Firefox Add-ons |
| 26 | |
| 27 | [Install from Firefox Add-ons](https://addons.mozilla.org/firefox/addon/prompts-chat/) |
| 28 | |
| 29 | You can also download the latest version from our [GitHub Releases](https://github.com/fatihsolhan/prompts-chat-extension/releases) |
| 30 | |
| 31 | ### Manual Installation (Chrome) |
| 32 | 1. Clone this repository |
| 33 | 2. Follow the [Development](#development) steps to build the extension |
| 34 | 3. Open Chrome and navigate to `chrome://extensions/` |
| 35 | 4. Enable "Developer mode" in the top right corner |
| 36 | 5. Click "Load unpacked" and select the `.output/chrome-mv3` directory |
| 37 | |
| 38 | ### Manual Installation (Firefox) |
| 39 | 1. Clone this repository |
| 40 | 2. Run `yarn install && yarn build:firefox` |
| 41 | 3. Open Firefox and navigate to `about:debugging#/runtime/this-firefox` |
| 42 | 4. Click "Load Temporary Add-on" and select any file in the `.output/firefox-mv2` directory |
| 43 | |
| 44 | ## Development |
| 45 | |
| 46 | ```bash |
| 47 | # Install dependencies |
| 48 | yarn install |
| 49 | |
| 50 | # Start development server |
| 51 | yarn dev |
| 52 | |
| 53 | # Build for production |
| 54 | yarn build |
| 55 | ``` |
| 56 | |
| 57 | ## Privacy & Analytics |
| 58 | |
| 59 | This extension uses anonymous analytics to understand feature usage and improve the experience. We track: |
| 60 | - Which features are used (prompt views, copies, runs) |
| 61 | - Which AI platforms are popular |
| 62 | - No personal information or prompt content is ever collected |
| 63 | |
| 64 | Read our full [Privacy Policy](PRIVACY.md) for more details. |
| 65 | |
| 66 | ## Contributing |
| 67 | |
| 68 | Contributions are welcome! Please feel free to submit a Pull Request. For major changes, please open an issue first to discuss what you would like to change. |
| 69 | |
| 70 | ### Releases |
| 71 | |
| 72 | This project uses [semantic-release](https://semantic-release.gitbook.io/) for automated versioning and releases. When PRs are merged to main: |
| 73 | - Version is automatically determined from commit messages |
| 74 | - CHANGELOG.md is automatically updated |
| 75 | - GitHub Release is created |
| 76 | - Extension is published to Chrome Web Store and Firefox Add-ons |
| 77 | |
| 78 | Check our [releases page](https://github.com/fatihsolhan/prompts-chat-extension/releases) for the latest versions. |
| 79 | |
| 80 | ### Adding New Prompts |
| 81 | |
| 82 | Want to add a new prompt? Submit it directly on [prompts.chat](https://prompts.chat/prompts/new) and it will automatically become available in this extension. |
| 83 | |
| 84 | ## Credits |
| 85 | |
| 86 | This extension is built on top of the [Awesome ChatGPT Prompts](https://github.com/f/awesome-chatgpt-prompts) collection. We are grateful to [Fatih Kadir Akın](https://github.com/f) and all the contributors of the original repository for creating and maintaining such a valuable resource. |
| 87 | |
| 88 | ### Original Resources |
| 89 | - [prompts.chat Website](https://prompts.chat) |
| 90 | - [Awesome ChatGPT Prompts Repository](https://github.com/f/awesome-chatgpt-prompts) |
| 91 | - [Hugging Face Dataset](https://huggingface.co/datasets/fka/awesome-chatgpt-prompts/) |
| 92 | |
| 93 | ## License |
| 94 | |
| 95 | This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details. |
| 96 | |
| 97 | ## Author |
| 98 | |
| 99 | - Extension by [Fatih Solhan](htt |