You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A Chrome extension that adds ChatGPT to every text box on the internet! Use it to write tweets, revise emails, fix coding bugs, or whatever else you need, all without leaving the site you're on. Includes a plugin system for greater control over ChatGPT behavior and ability to interact with 3rd party APIs.
Install
First clone this repo on your local machine
Then install dependencies
npm install
Copy .env-example into a new file named .env and add your ChatGPT API Key.
Run the server so the extension can communicate with ChatGPT.
node server.js
This will automate interaction with ChatGPT through OpenAI's API, thanks to the chatgpt-api library.
Add the extension
Go to chrome://extensions in your Google Chrome browser
Check the Developer mode checkbox in the top right-hand corner
Click "Load Unpacked" to see a file-selection dialog
Select your local chatgpt-chrome-extension/extension directory
You'll now see "Ask ChatGPT" if you right click in any text input or content editable area.
Troubleshooting
If ChatGPT is taking a very long time to respond or not responding at all then it could mean that their servers are currently overloaded. You can confirm this by going to chat.openai.com/chat and seeing whether their website works directly.
Plugins
Plugins have the ability to inform ChatGPT of specific conversation rules and parse replies from ChatGPT before they are sent to the browser.
Default - Sets some default conversation rules 🧑🏫
Image - Tells ChatGPT to describe things visually when asked for an image and then replaces the description with a matching AI generated image from Lexica 📸
Your really cool plugin - Go make a plugin, do a pull-request and I'll add it the list 🤝