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文件
下載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! 擴展基本資訊
| 名稱 | |
| ID | meonalmakdjaojaoipfhahcfccoecegk |
| 官方網址 | 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"
]
}
]
} | |