Chrome History Cleaner

Clears the chrome browser history automatically on browser start. You can also schedule to clear chrome history periodically.
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": "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.4",
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self';"
  },
  "incognito": "split",
  "action": {
    "default_icon": "icon.png",
    "default_title": "Chrome History Cleaner",
    "default_popup": "popup.html"
  },
  "permissions": [
    "browsingData",
    "storage",
    "alarms"
  ],
  "background": {
    "service_worker": "bm.js"
  }
}