Delete On Exit

Delete On Exit

Automatically delete user selected data when browser is closed, keeping your banking, crypto, and other personal information safe!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Delete On Exit",
  "version": "1.5",
  "description": "Automatically delete user selected data when browser is closed, keeping your banking, crypto, and other personal information safe!",
  "permissions": [
    "background",
    "browsingData",
    "storage",
    "contextMenus",
    "windows"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "ExtPay.js",
        "popup.js",
        "background.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "https://extensionpay.com/*"
      ],
      "run_at": "document_start",
      "js": [
        "ExtPay.js"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "ExtPay.js"
      ]
    }
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "Delete On Exit",
    "default_popup": "popup.html",
    "default_icon": {
      "16": "icon16.png",
      "32": "icon32.png",
      "48": "icon48.png",
      "128": "icon128.png"
    }
  }
}