gpt.best
Share ChatGPT Transcripts
Cos'è gpt.best?
gpt.best è un'estensione di Chrome sviluppata da Riley Tomasek, e la sua funzione principale è "Share ChatGPT Transcripts".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione gpt.best
Scarica i file di estensione gpt.best in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | gpt.best |
ID | lfjehajehlondfmmdnacgomigbkfahln |
URL Ufficiale | https://chromewebstore.google.com/detail/gptbest/lfjehajehlondfmmdnacgomigbkfahln |
Descrizione | Share ChatGPT Transcripts |
Dimensione del File | 7.94 KB |
Conteggio Installazioni | 850 |
Versione Corrente | 1.1.0 |
Ultimo Aggiornamento | 2023-03-21 |
Data di Pubblicazione | 2022-12-12 |
Valutazione | 4.20/5 Totale 5 Valutazioni |
Sviluppatore | Riley Tomasek |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://gpt.best/ |
Lingue Supportate | 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" } } |