ChatGPT3ConversationBackup

ChatGPT3ConversationBackup

The "ChatPT3 Backup" addon provides a convenient and efficient solution for those who need to save and store chat conversations generated by the ChatGPT3 language model.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "ChatGPT3ConversationBackup",
  "version": "1.1.1",
  "description": "This addon allows you to save ChatGPT3 chats to an HTML file.",
  "permissions": [
    "activeTab",
    "downloads",
    "contextMenus",
    "storage",
    "tabs",
    "menus",
    "https://chat.openai.com/"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://chat.openai.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_title": "save ChatGPT3 chats to an HTML file",
    "default_popup": "popup.html"
  },
  "icons": {
    "96": "icons/icon96.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{b5f0f443-3fd9-4e50-a0df-02544fd71137}"
    }
  }
}