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.

什麼是ChatGPT Backup and Save (PDF & Text)?

ChatGPT Backup and Save (PDF & Text)是由ECALL TECHNOLOGIES開發的Chrome擴展程式,該擴展的主要功能是“With ChatGPT Backup and Save, your conversations can be safely backed up and can be accessed anytime you need them.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載ChatGPT Backup and Save (PDF & Text)擴展crx文件

下載ChatGPT Backup and Save (PDF & Text)擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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)                    

擴展基本資訊

名稱 ChatGPT Backup and Save (PDF & Text) ChatGPT Backup and Save (PDF & Text)
ID mighmhffpjlndhkpdhfaomodnhbnjigd
官方網址 https://chromewebstore.google.com/detail/chatgpt-backup-and-save-p/mighmhffpjlndhkpdhfaomodnhbnjigd
簡介 With ChatGPT Backup and Save, your conversations can be safely backed up and can be accessed anytime you need them.
檔案大小 1.96 MB
安裝次數 232
目前版本 0.0.3
更新時間 2023-05-06
上架時間 2023-03-23
評分 3.00/5 共 1 次評分
開發者 ECALL TECHNOLOGIES
電子郵箱 [email protected]
付費類型 free
擴展官網 https://cbs.ecall.tech
說明頁面URL https://cbs.ecall.tech
隱私政策頁面URL https://cbs.ecall.tech/privacy-policy
支援的語言 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": []
}