FancyGPT

Save and share beautiful ChatGPT snippets as images, PDFs, and text files.

Was ist FancyGPT?

FancyGPT ist eine Chrome-Erweiterung, die von https://fancygpt.com entwickelt wurde, und ihr Hauptmerkmal ist "Save and share beautiful ChatGPT snippets as images, PDFs, and text files.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot
screenshot

FancyGPT-Erweiterungs-CRX-Datei herunterladen

Laden Sie FancyGPT-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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!                    

Grundlegende Informationen zur Erweiterung

Name FancyGPT FancyGPT
ID meonalmakdjaojaoipfhahcfccoecegk
Offizielle URL https://chromewebstore.google.com/detail/fancygpt/meonalmakdjaojaoipfhahcfccoecegk
Beschreibung Save and share beautiful ChatGPT snippets as images, PDFs, and text files.
Dateigröße 333 KB
Installationsanzahl 10,000
Aktuelle Version 1.1.8
Letztes Update 2023-05-15
Veröffentlichungsdatum 2022-12-19
Bewertung 4.44/5 Insgesamt 25 Bewertungen
Entwickler https://fancygpt.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://fancygpt.com/
Hilfeseite URL https://twitter.com/fancyGPT
URL der Datenschutzrichtlinien-Seite https://viszen.tech
Unterstützte Sprachen 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"
            ]
        }
    ]
}