smartGPT Multi-Tab Extension
A Chrome extension to interact with ChatGPT across multiple tabs
什么是smartGPT Multi-Tab Extension?
smartGPT Multi-Tab Extension是由The Jade Authors开发的Chrome扩展程序,该扩展的主要功能是“A Chrome extension to interact with ChatGPT across multiple tabs”。
扩展截图
下载smartGPT Multi-Tab Extension扩展crx文件
下载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" } } |