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" } } |