ChatGPT Backup and Save (PDF & Text)

With ChatGPT Backup and Save, your conversations can be safely backed up and can be accessed anytime you need them.

Qu'est-ce que ChatGPT Backup and Save (PDF & Text) ?

ChatGPT Backup and Save (PDF & Text) est une extension Chrome développée par ECALL TECHNOLOGIES, et sa fonction principale est "With ChatGPT Backup and Save, your conversations can be safely backed up and can be accessed anytime you need them.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension ChatGPT Backup and Save (PDF & Text)

Téléchargez les fichiers d'extension ChatGPT Backup and Save (PDF & Text) 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

                        Save your ChatGPT conversations effortlessly with our extension! With just one click, you can now easily save your conversations as PDF or text files, allowing you to revisit them anytime, anywhere. Our extension is user-friendly and intuitive, making it easy for you to manage your conversations and keep a record of your interactions with ChatGPT. It's free to use and available for all Chrome users! 

Changelog:
- March 26, 2023 v0.0.3
Fixed a glitch that was creating a duplicate "Save this conversation" link.

- March 24, 2023 v0.0.2
Updated store listing page

- March 22, 2023 v0.0.1
First released : To be improved

--
Developer note:
Remember that ChatGPT is still experimental. Changes are applied "live" on a daily basis, which can cause our extension to be outdated without any notice. If our extension doesn't work anymore:
1- Let us know
2- Try again every 2-3 days (aka the time we need to update our code and get it reviewed)                    

Informations de Base sur l'Extension

Nom ChatGPT Backup and Save (PDF & Text) ChatGPT Backup and Save (PDF & Text)
ID mighmhffpjlndhkpdhfaomodnhbnjigd
URL Officiel https://chromewebstore.google.com/detail/chatgpt-backup-and-save-p/mighmhffpjlndhkpdhfaomodnhbnjigd
Description With ChatGPT Backup and Save, your conversations can be safely backed up and can be accessed anytime you need them.
Taille du Fichier 1.96 MB
Nombre d'Installations 232
Version Actuelle 0.0.3
Dernière Mise à Jour 2023-05-06
Date de Publication 2023-03-23
Évaluation 3.00/5 Total 1 Évaluations
Développeur ECALL TECHNOLOGIES
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://cbs.ecall.tech
URL de la Page d'Aide https://cbs.ecall.tech
URL de la Page de Politique de Confidentialité https://cbs.ecall.tech/privacy-policy
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "With ChatGPT Backup and Save, your conversations can be safely backed up and can be accessed anytime you need them.",
    "version": "0.0.3",
    "name": "ChatGPT Backup and Save (PDF & Text)",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.bundle.js"
    },
    "action": {
        "default_popup": "app.html",
        "default_icon": "icon-128.png"
    },
    "icons": {
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/chat.openai.com\/*"
            ],
            "all_frames": true,
            "js": [
                "jquery-3.5.1.min.js",
                "jspdf.min.js",
                "sweetalert2.all.min.js",
                "FileSaver.min.js",
                "html2canvas.min.js",
                "contentScript.bundle.js"
            ],
            "run_at": "document_end",
            "css": [
                "content.styles.css",
                "sweetalert2.min.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "jquery-3.5.1.min.js",
                "jspdf.min.js",
                "sweetalert2.all.min.js",
                "sweetalert2.min.css",
                "FileSaver.min.js",
                "html2canvas.min.js",
                "content.styles.css",
                "icon-128.png",
                "icon-32.png"
            ],
            "matches": [
                "*:\/\/chat.openai.com\/*"
            ]
        }
    ],
    "permissions": []
}