FancyGPT

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

FancyGPT là gì?

FancyGPT là một tiện ích mở rộng Chrome được phát triển bởi https://fancygpt.com, và tính năng chính của nó là "Save and share beautiful ChatGPT snippets as images, PDFs, and text files.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng FancyGPT

Tải xuống các tệp mở rộng FancyGPT dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên FancyGPT FancyGPT
ID meonalmakdjaojaoipfhahcfccoecegk
URL Chính Thức https://chromewebstore.google.com/detail/fancygpt/meonalmakdjaojaoipfhahcfccoecegk
Mô tả Save and share beautiful ChatGPT snippets as images, PDFs, and text files.
Kích Thước Tệp 333 KB
Số Lần Cài Đặt 10,000
Phiên Bản Hiện Tại 1.1.8
Cập Nhật Lần Cuối 2023-05-15
Ngày Phát Hành 2022-12-19
Đánh Giá 4.44/5 Tổng số 25 Đánh Giá
Nhà Phát Triển https://fancygpt.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://fancygpt.com/
URL Trang Trợ Giúp https://twitter.com/fancyGPT
URL Trang Chính Sách Bảo Mật https://viszen.tech
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}