Export GPT - Export your chats with GPTs

An extension to export your chats with pre-trained transformers

Qu'est-ce que Export GPT - Export your chats with GPTs ?

Export GPT - Export your chats with GPTs est une extension Chrome développée par Rizwan, et sa fonction principale est "An extension to export your chats with pre-trained transformers".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Export GPT - Export your chats with GPTs

Téléchargez les fichiers d'extension Export GPT - Export your chats with GPTs au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        An extension to export your conversations with pre-trained transformers into a sharable PDF file. Currently it only supports ChatGPT                    

Informations de Base sur l'Extension

Nom Export GPT - Export your chats with GPTs Export GPT - Export your chats with GPTs
ID pipfffccmkdbpmnnpcnbecjmbgacnkob
URL Officiel https://chromewebstore.google.com/detail/export-gpt-export-your-ch/pipfffccmkdbpmnnpcnbecjmbgacnkob
Description An extension to export your chats with pre-trained transformers
Taille du Fichier 268 KB
Nombre d'Installations 118
Version Actuelle 1.0.2
Dernière Mise à Jour 2023-05-10
Date de Publication 2023-05-05
Évaluation 3.00/5 Total 2 Évaluations
Développeur Rizwan
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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\/*"
            ]
        }
    ]
}