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 |
| 官方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\/*"
]
}
]
} | |