smartGPT Multi-Tab Extension
A Chrome extension to interact with ChatGPT across multiple tabs
smartGPT Multi-Tab Extension là gì?
smartGPT Multi-Tab Extension là một tiện ích mở rộng Chrome được phát triển bởi The Jade Authors, và tính năng chính của nó là "A Chrome extension to interact with ChatGPT across multiple tabs".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng smartGPT Multi-Tab Extension
Tải xuống các tệp mở rộng smartGPT Multi-Tab Extension dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | smartGPT Multi-Tab Extension |
ID | pinboagpmeoickkeeaghhbicpbjpeaba |
URL Chính Thức | https://chromewebstore.google.com/detail/smartgpt-multi-tab-extens/pinboagpmeoickkeeaghhbicpbjpeaba |
Mô tả | A Chrome extension to interact with ChatGPT across multiple tabs |
Kích Thước Tệp | 29.63 KB |
Số Lần Cài Đặt | 37 |
Phiên Bản Hiện Tại | 1.1 |
Cập Nhật Lần Cuối | 2023-05-13 |
Ngày Phát Hành | 2023-05-11 |
Nhà Phát Triển | The Jade Authors |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/TheJadeAuthors/smartGPT-Multi-Tab-Extension |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |