FancyGPT

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

FancyGPTคืออะไร?

FancyGPT เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://fancygpt.com และคุณลักษณะหลักของมันคือ "Save and share beautiful ChatGPT snippets as images, PDFs, and text files."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย FancyGPT

ดาวน์โหลดไฟล์ส่วนขยาย FancyGPT ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
            ]
        }
    ]
}