gpt.best
Share ChatGPT Transcripts
Qu'est-ce que gpt.best ?
gpt.best est une extension Chrome développée par Riley Tomasek, et sa fonction principale est "Share ChatGPT Transcripts".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension gpt.best
Téléchargez les fichiers d'extension gpt.best 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
GPTBest adds a share button to the ChatGPT app that creates a shareable link from the current conversation. It's great for sharing longer conversations that don't fit in a screenshot.
Informations de Base sur l'Extension
Nom | gpt.best |
ID | lfjehajehlondfmmdnacgomigbkfahln |
URL Officiel | https://chromewebstore.google.com/detail/gptbest/lfjehajehlondfmmdnacgomigbkfahln |
Description | Share ChatGPT Transcripts |
Taille du Fichier | 7.94 KB |
Nombre d'Installations | 850 |
Version Actuelle | 1.1.0 |
Dernière Mise à Jour | 2023-03-21 |
Date de Publication | 2022-12-12 |
Évaluation | 4.20/5 Total 5 Évaluations |
Développeur | Riley Tomasek |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://gpt.best/ |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "gpt.best", "description": "Share ChatGPT Transcripts", "version": "1.1.0", "manifest_version": 3, "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/chat.openai.com\/chat*" ], "js": [ "script.js" ], "run_at": "document_end" } ], "background": { "service_worker": "background.js" } } |