ChatGPT-Simple
Simply call ChatGPT
What is ChatGPT-Simple?
ChatGPT-Simple is a Chrome extension developed by Fujun Du, and its main feature is "Simply call ChatGPT".
Extension Screenshots
Download ChatGPT-Simple Extension CRX File
Download ChatGPT-Simple extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Call ChatGPT API (gpt-3.5-turbo) with an API key. It sends the user input text to the OpenAI ChatGPT API, and displays the reply returned by ChatGPT. The token usage of each conversation are also reported.
Extension Basic Information
Name | ChatGPT-Simple |
ID | jacmfdljbkmgomdnpeibonaaholjbieo |
Official URL | https://chromewebstore.google.com/detail/chatgpt-simple/jacmfdljbkmgomdnpeibonaaholjbieo |
Description | Simply call ChatGPT |
File Size | 20.96 KB |
Installation Count | 26 |
Current Version | 1.0 |
Last Updated | 2023-03-07 |
Publish Date | 2023-03-06 |
Developer | Fujun Du |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/fjdu/chatGPT-call |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "ChatGPT-Simple", "description": "Simply call ChatGPT", "version": "1.0", "permissions": [ "storage" ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "action": { "default_popup": "popup.html", "default_icon": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } } } |