ChRAM: Simple Browsing Data Cleaner

Clean Browsing Data with ChRAM
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": 2,
  "short_name": "ChRAM",
  "name": "ChRAM: Simple Browsing Data Cleaner",
  "version": "4.1.3",
  "description": "Clean Browsing Data with ChRAM",
  "offline_enabled": true,
  "icons": {
    "16": "images/logo16.png",
    "48": "images/logo48.png",
    "128": "images/logo128.png"
  },
  "browser_action": {
    "default_title": "Clean Browsing Data with ChRAM",
    "default_popup": "/index.html",
    "default_icon": {
      "16": "images/logo16.png",
      "48": "images/logo48.png",
      "128": "images/logo128.png"
    }
  },
  "permissions": [
    "browsingData",
    "system.memory",
    "notifications",
    "management"
  ],
  "background": {
    "scripts": [
      "bg.js"
    ]
  },
  "commands": {
    "prev-window": {
      "suggested_key": {
        "default": "Alt+PageUp"
      },
      "description": "Open previous Chrome window"
    },
    "next-window": {
      "suggested_key": {
        "default": "Alt+PageDown"
      },
      "description": "Open next Chrome window"
    }
  }
}