smartGPT Multi-Tab Extension
A Chrome extension to interact with ChatGPT across multiple tabs
Qu'est-ce que smartGPT Multi-Tab Extension ?
smartGPT Multi-Tab Extension est une extension Chrome développée par The Jade Authors, et sa fonction principale est "A Chrome extension to interact with ChatGPT across multiple tabs".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension smartGPT Multi-Tab Extension
Téléchargez les fichiers d'extension smartGPT Multi-Tab Extension au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | smartGPT Multi-Tab Extension |
ID | pinboagpmeoickkeeaghhbicpbjpeaba |
URL Officiel | https://chromewebstore.google.com/detail/smartgpt-multi-tab-extens/pinboagpmeoickkeeaghhbicpbjpeaba |
Description | A Chrome extension to interact with ChatGPT across multiple tabs |
Taille du Fichier | 29.63 KB |
Nombre d'Installations | 37 |
Version Actuelle | 1.1 |
Dernière Mise à Jour | 2023-05-13 |
Date de Publication | 2023-05-11 |
Développeur | The Jade Authors |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/TheJadeAuthors/smartGPT-Multi-Tab-Extension |
Langues Prises en Charge | 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" } } |