FancyGPT
Save and share beautiful ChatGPT snippets as images, PDFs, and text files.
FancyGPT란 무엇입니까?
FancyGPT은(는) https://fancygpt.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Save and share beautiful ChatGPT snippets as images, PDFs, and text files."입니다.
확장 프로그램 스크린샷
FancyGPT 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 |
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" ] } ] } |