Export GPT - Export your chats with GPTs
An extension to export your chats with pre-trained transformers
什麼是Export GPT - Export your chats with GPTs?
Export GPT - Export your chats with GPTs是由Rizwan開發的Chrome擴展程式,該擴展的主要功能是“An extension to export your chats with pre-trained transformers”。
擴展截圖
下載Export GPT - Export your chats with GPTs擴展crx文件
下載Export GPT - Export your chats with GPTs擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
An extension to export your conversations with pre-trained transformers into a sharable PDF file. Currently it only supports ChatGPT 擴展基本資訊
| 名稱 | |
| ID | pipfffccmkdbpmnnpcnbecjmbgacnkob |
| 官方網址 | https://chromewebstore.google.com/detail/export-gpt-export-your-ch/pipfffccmkdbpmnnpcnbecjmbgacnkob |
| 簡介 | An extension to export your chats with pre-trained transformers |
| 檔案大小 | 268 KB |
| 安裝次數 | 118 |
| 目前版本 | 1.0.2 |
| 更新時間 | 2023-05-10 |
| 上架時間 | 2023-05-05 |
| 評分 | 3.00/5 共 2 次評分 |
| 開發者 | Rizwan |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Export GPT - Export your chats with GPTs",
"description": "An extension to export your chats with pre-trained transformers",
"version": "1.0.2",
"manifest_version": 3,
"action": [],
"icons": {
"16": "\/img\/exportgpt-16.png",
"32": "\/img\/exportgpt-32.png",
"48": "\/img\/exportgpt-48.png",
"128": "\/img\/exportgpt-128.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/chat.openai.com\/*"
],
"js": [
"script.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"style.css",
"img\/icon-main.png",
"img\/loader.png"
],
"matches": [
"https:\/\/chat.openai.com\/*"
]
}
]
} | |