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 |
官方網址 | 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" } } |