Export GPT - Export your chats with GPTs
An extension to export your chats with pre-trained transformers
Was ist Export GPT - Export your chats with GPTs?
Export GPT - Export your chats with GPTs ist eine Chrome-Erweiterung, die von Rizwan entwickelt wurde, und ihr Hauptmerkmal ist "An extension to export your chats with pre-trained transformers".
Erweiterungsscreenshots
Export GPT - Export your chats with GPTs-Erweiterungs-CRX-Datei herunterladen
Laden Sie Export GPT - Export your chats with GPTs-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
An extension to export your conversations with pre-trained transformers into a sharable PDF file. Currently it only supports ChatGPT Grundlegende Informationen zur Erweiterung
| Name | |
| ID | pipfffccmkdbpmnnpcnbecjmbgacnkob |
| Offizielle URL | https://chromewebstore.google.com/detail/export-gpt-export-your-ch/pipfffccmkdbpmnnpcnbecjmbgacnkob |
| Beschreibung | An extension to export your chats with pre-trained transformers |
| Dateigröße | 268 KB |
| Installationsanzahl | 118 |
| Aktuelle Version | 1.0.2 |
| Letztes Update | 2023-05-10 |
| Veröffentlichungsdatum | 2023-05-05 |
| Bewertung | 3.00/5 Insgesamt 2 Bewertungen |
| Entwickler | Rizwan |
| [email protected] | |
| Zahlungsart | free |
| Unterstützte Sprachen | 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\/*"
]
}
]
} | |