Bing Chat Logs Downloader

Bing Chat Logs Downloader

Download Bing Chat logs

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Bing Chat Logs Downloader",
  "version": "1.0.0",
  "author": "Wesley Cheng",
  "description": "Download Bing Chat logs",
  "icons": {
    "128": "icons/icon128.png"
  },
  "action": {
    "default_icon": {
      "128": "icons/icon128.png"
    },
    "default_title": "Download Bing Chat logs",
    "default_popup": "popup.html"
  },
  "permissions": [
    "downloads",
    "activeTab",
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.bing.com/*"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}