Chrome History Cleaner

Chrome History Cleaner

Clears the chrome browser history automatically on browser start. You can also schedule to clear chrome history periodically.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Chrome History Cleaner",
  "description": "Clears the chrome browser history automatically on browser start. You can also schedule to clear chrome history periodically.",
  "version": "1.0.3",
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "incognito": "split",
  "browser_action": {
    "default_icon": "icon.png",
    "default_title": "Chrome History Cleaner",
    "default_popup": "popup.html"
  },
  "permissions": [
    "browsingData",
    "storage"
  ],
  "background": {
    "scripts": [
      "jquery.min.js",
      "bm.js"
    ]
  }
}