A lightweight Chrome extension that keeps your browsing history and form-data suggestions always clean. On each tab or window close, it automatically wipes your URL history and form-autocomplete entries—no more unwanted Omnibox suggestions.
- Clears browsing history (
chrome.history.deleteAll()) - Removes form-data suggestions (
chrome.browsingData.remove({ since: 0 }, { history: true, formData: true })) - Toggle on/off from the popup at any time
- Zero console output or clutter—just pure functionality
- Clone or download this repo.
- Open
chrome://extensionsin your browser. - Enable Developer mode.
- Click Load unpacked and select the extension folder.
- Pin the CHoTC icon and click it to open the popup.
- Click the toggle checkbox in the popup to enable or disable auto-cleaning.
- When enabled, every tab or window close triggers a history/form-data wipe.
history— delete browsing historybrowsingData— remove form-data suggestionstabs,windows— detect when tabs/windows are closedstorage— remember your enable/disable preference