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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Rizwan และคุณลักษณะหลักของมันคือ "An extension to export your chats with pre-trained transformers"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Export GPT - Export your chats with GPTs
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
| URL อย่างเป็นทางการ | 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\/*"
]
}
]
} | |