smartGPT Multi-Tab Extension
A Chrome extension to interact with ChatGPT across multiple tabs
smartGPT Multi-Tab Extensionคืออะไร?
smartGPT Multi-Tab Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย The Jade Authors และคุณลักษณะหลักของมันคือ "A Chrome extension to interact with ChatGPT across multiple tabs"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย smartGPT Multi-Tab Extension
ดาวน์โหลดไฟล์ส่วนขยาย smartGPT Multi-Tab Extension ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
The smartGPT Multi-Tab Resolver is a Chrome extension that allows users to interact with ChatGPT across multiple tabs to get more refined answers to their questions. This follows some of the ideas in "An automatically discovered chain-of-thought prompt generalizes to novel models and datasets" Hebenstreit, Praas, Kiesewetter, Samwald. The name was coined by the Youtube channel AI Explained. We intend to develop this project to allow a wide selection of AI models, including but not limited to Vicuna and other Llama based models. The project is open source and its Github page is here: https://github.com/TheJadeAuthors/smartGPT-Multi-Tab-Extension
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | smartGPT Multi-Tab Extension |
ID | pinboagpmeoickkeeaghhbicpbjpeaba |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/smartgpt-multi-tab-extens/pinboagpmeoickkeeaghhbicpbjpeaba |
คำอธิบาย | A Chrome extension to interact with ChatGPT across multiple tabs |
ขนาดไฟล์ | 29.63 KB |
จำนวนการติดตั้ง | 37 |
เวอร์ชันปัจจุบัน | 1.1 |
อัปเดตครั้งล่าสุด | 2023-05-13 |
วันที่เผยแพร่ | 2023-05-11 |
ผู้พัฒนา | The Jade Authors |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/TheJadeAuthors/smartGPT-Multi-Tab-Extension |
ภาษาที่รองรับ | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "smartGPT Multi-Tab Extension", "version": "1.1", "description": "A Chrome extension to interact with ChatGPT across multiple tabs", "permissions": [ "scripting" ], "host_permissions": [ "https:\/\/chat.openai.com\/*" ], "action": { "default_popup": "popup.html", "default_icon": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" } }, "content_scripts": [ { "matches": [ "https:\/\/chat.openai.com\/*" ], "js": [ "content_scripts.js" ] } ], "background": { "service_worker": "background.js" } } |