Incognito Mode Reset Button

Clear history, cookies and cache of a running incognito session while leaving all tabs open!
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Incognito Mode Reset Button",
  "description": "Clear history, cookies and cache of a running incognito session while leaving all tabs open!",
  "version": "1.1.0",
  "short_name": "Incognito Reset",
  "action": {
    "default_icon": "icon2_grey.png",
    "default_popup": "popup.htm"
  },
  "permissions": [
    "tabs",
    "browsingData"
  ],
  "incognito": "split",
  "background": {
    "service_worker": "background.js"
  },
  "icons": {
    "16": "appIcon_16.png",
    "48": "appIcon_48.png",
    "128": "appIcon_128.png"
  }
}