FancyGPT
Save and share beautiful ChatGPT snippets as images, PDFs, and text files.
Cos'è FancyGPT?
FancyGPT è un'estensione di Chrome sviluppata da https://fancygpt.com, e la sua funzione principale è "Save and share beautiful ChatGPT snippets as images, PDFs, and text files.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione FancyGPT
Scarica i file di estensione FancyGPT 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
FancyGPT lets you beautify your ChatGPT threads, and store them for future reference or sharing with others with images, searchable PDFs, and text files. Features: - Export better looking code snippets, lists, tables, and more. - Choose which messages to include / exclude when sharing. - Select from neon, sketch, dark, and light styles. - Highlight areas of interest in ChatGPT's responses. - SVG path images are rendered below the code. - Save as an image for social sharing. - Save as a PDF for keeping and sharing searchable content. - Save as a text file in markdown format for sharing searchable content. Use cases: - Save chat threads for your personal reference when ChatGPT is down. - Share selective messages in a good looking way with friends and colleagues. - Export chat threads as text for further processing and analysis. If you have any issues, ideas, or requests, message us on Twitter @fancyGPT. Thanks for trying FancyGPT!
Informazioni di Base sull'Estensione
Nome | FancyGPT |
ID | meonalmakdjaojaoipfhahcfccoecegk |
URL Ufficiale | https://chromewebstore.google.com/detail/fancygpt/meonalmakdjaojaoipfhahcfccoecegk |
Descrizione | Save and share beautiful ChatGPT snippets as images, PDFs, and text files. |
Dimensione del File | 333 KB |
Conteggio Installazioni | 10,000 |
Versione Corrente | 1.1.8 |
Ultimo Aggiornamento | 2023-05-15 |
Data di Pubblicazione | 2022-12-19 |
Valutazione | 4.44/5 Totale 25 Valutazioni |
Sviluppatore | https://fancygpt.com |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://fancygpt.com/ |
URL della Pagina di Aiuto | https://twitter.com/fancyGPT |
URL della Pagina della Politica sulla Privacy | https://viszen.tech |
Lingue Supportate | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "FancyGPT", "description": "Save and share beautiful ChatGPT snippets as images, PDFs, and text files.", "version": "1.1.8", "manifest_version": 3, "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "service_worker": "background.js" }, "permissions": [ "storage", "unlimitedStorage", "activeTab", "scripting" ], "action": { "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/chat.openai.com\/chat" ], "js": [ "popup.js" ] } ] } |