FancyGPT

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

FancyGPT क्या है?

FancyGPT https://fancygpt.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Save and share beautiful ChatGPT snippets as images, PDFs, and text files."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में FancyGPT एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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!                    

एक्सटेंशन की मूल जानकारी

नाम FancyGPT FancyGPT
ID meonalmakdjaojaoipfhahcfccoecegk
आधिकारिक URL https://chromewebstore.google.com/detail/fancygpt/meonalmakdjaojaoipfhahcfccoecegk
विवरण Save and share beautiful ChatGPT snippets as images, PDFs, and text files.
फ़ाइल का आकार 333 KB
स्थापना संख्या 10,000
वर्तमान संस्करण 1.1.8
अंतिम अपडेट 2023-05-15
प्रकाशन तिथि 2022-12-19
रेटिंग 4.44/5 कुल 25 रेटिंग्स
डेवलपर https://fancygpt.com
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://fancygpt.com/
सहायता पृष्ठ URL https://twitter.com/fancyGPT
गोपनीयता नीति पृष्ठ URL https://viszen.tech
समर्थित भाषाएँ 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"
            ]
        }
    ]
}