ChatGPT Toolkit
Enhances your ChatGPT experience with useful features like a Auto-Fill prompt text from URL, common prompts after response, and…
ChatGPT Toolkitคืออะไร?
ChatGPT Toolkit เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://blog.miniasp.com และคุณลักษณะหลักของมันคือ "Enhances your ChatGPT experience with useful features like a Auto-Fill prompt text from URL, common prompts after response, and…"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ChatGPT Toolkit
ดาวน์โหลดไฟล์ส่วนขยาย ChatGPT Toolkit ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
The ChatGPT Toolbox provides some useful additional features for the ChatGPT website, which can enhance the user experience. Currently, two features are available:
1. Automatic prompt filling from URL: This allows you to save commonly used prompts as bookmarks and quickly fill them in when needed.
2. Automatic prompt button in the ChatGPT response field: These commonly used prompts can be automatically entered through a button.
3. You can directly edit the prompt by double-clicking on the user icon or prompt text.
More useful features will be launched in the future, and everyone is welcome to provide ideas and suggestions.
Instructions
1. Add `#autoSubmit=1&prompt=your_prompt_text` to the URL bar, for example:
Open the ChatGPT website and fill in "hello" without automatically submitting (`autoSubmit=0`):
Open the ChatGPT website and fill in "hello" with automatic submission (`autoSubmit=1`):
2. Set it as the default search engine in Chrome / Edge, for example:
Refer to the [Set your default search engine & site search shortcuts](https://support.google.com/chrome/answer/95426?hl=en) document for instructions!
Example settings:
```txt
Search engine: ChatGPT
Shortcut: g
URL with %s in place of query: https://chat.openai.com/chat#autoSubmit=1&prompt=%s
```
Just type `g` in the URL bar and press the Tab key, and ChatGPT will automatically open and fill in the prompt text.
GitHub Repo: https://github.com/doggy8088/ChatGPTToolkitExtension ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| ID | fmijcafgekkphdijpclfgnjhchmiokgp |
| URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/chatgpt-toolkit/fmijcafgekkphdijpclfgnjhchmiokgp |
| คำอธิบาย | Enhances your ChatGPT experience with useful features like a Auto-Fill prompt text from URL, common prompts after response, and… |
| ขนาดไฟล์ | 400 KB |
| จำนวนการติดตั้ง | 20,000 |
| เวอร์ชันปัจจุบัน | 0.15.0 |
| อัปเดตครั้งล่าสุด | 2023-11-23 |
| วันที่เผยแพร่ | 2023-02-28 |
| คะแนน | 5.00/5 รวมทั้งหมด 42 คะแนน |
| ผู้พัฒนา | https://blog.miniasp.com |
| อีเมล | [email protected] |
| ประเภทการชำระเงิน | free |
| เว็บไซต์ส่วนขยาย | https://github.com/doggy8088/ChatGPTToolkitExtension |
| URL หน้าช่วยเหลือ | https://m.me/will.fans |
| ภาษาที่รองรับ | en,zh-TW,ja |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "__MSG_chatgpttoolkit_name__",
"description": "__MSG_chatgpttoolkit_description__",
"version": "0.15.0",
"default_locale": "zh_TW",
"author": "__MSG_chatgpttoolkit_author__",
"icons": {
"16": "images\/icon-16.png",
"32": "images\/icon-32.png",
"48": "images\/icon-48.png",
"128": "images\/icon-128.png"
},
"content_scripts": [
{
"js": [
"scripts\/content.js"
],
"matches": [
"https:\/\/chat.openai.com\/*"
]
}
]
} | |