Complete Eraser

Complete Eraser

Empowers users to erase all traces of their browsing activities by deleting history, passwords, downloads, and service workers from their browser.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "description": "Allows the user to remove history, passwords, downloads, serviceWorkers",
  "manifest_version": 2,
  "name": "Delete Everything",
  "version": "1.0",
  "homepage_url": "https://github.com/nabendu82/Addons",
  "icons": {
    "32": "icons/logo_32.png",
    "64": "icons/logo_64.png",
    "128": "icons/logo_128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "icons/logo_64.png",
    "default_title": "Delete it!"
  },
  "options_ui": {
    "page": "options/options.html",
    "browser_style": false
  },
  "permissions": [
    "browsingData",
    "notifications",
    "storage"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{0d9cc04d-1e4d-4194-9cc8-fd1885fc590c}"
    }
  }
}