How can I remove OLD history from Google Chrome?

19

7

I'm working on a laptop with a modest hard drive, and 500MB is taken up with Google Chrome "History Index" and "Thumbnails" files. Some of these files are a year old. Chrome offers me the option to remove recent history, but I want the opposite: I want to remove old history. (Ideally I would remove the least recently used history information, but I don't expect to be able to do that.)

Anyone have any ideas? I'm running the standard Debian google-chrome-beta package.

Norman Ramsey

Posted 2010-12-01T02:47:52.307

Reputation: 2 613

@NormanRamsey, Chrome automatically remove history older than 90 days. Is that what you wanted? – Pacerier – 2015-10-12T06:25:06.193

Chrome now has built in support for clearing history, cookies, and other data, so this question is no longer relevant. – nhinkle – 2011-06-06T21:08:31.863

2@nhinkle: please cite version number or page of google documentation. chrome has had "support" for some time, but the support as of chrome 11 (current stable version) allows only to delete recent history, not old history – Norman Ramsey – 2011-06-07T00:13:31.010

that's fair; I've re-opened the question. My apologies for not understanding it properly. – nhinkle – 2011-06-07T00:41:45.020

Answers

13

Shameful to Google, there is no way yet.

Besides that, all the Chrome databases are just sqlite3 files, and you can use sqlite3 to purge unneeded entries. First, install the sqlite3 client (sudo apt-get install sqlite3), and then go to Chrome config (should be .config/chrome/Default).

Here is an SQL snippet which purges old URLs from history (works on databases History, Archived History):

delete from urls where last_visit_time <= (strftime('%s',(select 
   max(last_visit_time)/10000000 from urls),'unixepoch','-1 days')*10000000);

Here is another one which will probably work on Thumbnails database:

attach database 'History' as history;
delete from thumbnails where last_updated <= (strftime('%s',(select 
   max(last_visit_time)/10000000 from history.urls),'unixepoch','-1 days')
   *10000000);

This will probably work on History Index-es:

attach database 'History' as history;
delete from info i, pages_content pc where i.time <= (strftime('%s',(select
   max(last_visit_time)/10000000 from history.urls),'unixepoch','-1 days')*
   10000000) and i.rowid = pc.rowid;

Of course you should backup all the databases, because you may have different version of Chrome, or I may accidentally miss a symbol, etc.

As Chrome stores its times in some weird format based on UNIX Epoch (but multiplied by 10^7 and shifted to the future), system functions returning date cannot be used; the date of last page opening is used instead.

You can replace -1 days with any interval you want; you can read about allowed modifiers in SQLite documentation (shortly: -N days, -N months).

After removing unneeded data, you may want to issue vacuum; command which shrinks the database even further.

whitequark

Posted 2010-12-01T02:47:52.307

Reputation: 14 146

@whitequark, What do you mean by "shifted to the future"? – Pacerier – 2015-10-12T06:24:14.850

2Thanks for the detailed answer. I knew I should have paid more attention in database class. – Norman Ramsey – 2010-12-21T02:35:15.710

3

(This is not an answer, but I'm leaving it up as a warning.)

I've seen two extensions that claim to do this in some way, but neither works.

However these (and I expect other extensions) only call chrome.history.deleteRange — if you're lucky, with reasonable parameters. According to the documentation:

Removes all items within the specified date range from the history. Pages will not be removed from the history unless all visits fall within the range.

And in practice, I can't see any effect, beyond (I think) pages not appearing in the history page. In particular the history database file is still large, and Chrome still makes a lot of IO to it. So I suspect (from very casual observation with Chromium 9 beta r68937) that chrome.history.deleteRange only affects what's visible in the chrome://history page and not what's stored on the disk and affects things like URL bar completion.

Gilles 'SO- stop being evil'

Posted 2010-12-01T02:47:52.307

Reputation: 58 319

History limiter was fixed to not behave like Norman pointed out. Also, there is a fork of History limiter which seems updated and better: https://chrome.google.com/webstore/detail/history-limiter-custom/ibpfkplbhnbiklpjacjbaelahebmbmpp/related

– bdombro – 2018-08-13T19:04:17.843

Both are bad news. History limiter removes all but your last 7 days, so the moment you install it, you lose. And Click2Clear History is a usability disaster, not to mention that the "custom period" in the screen shot appears not to work. Avoid both these extensions---especially History Limiter, which irreversibly removes access to your history. And it doesn't remove the damn data, either!!!! – Norman Ramsey – 2010-12-21T02:45:20.490

What do you mean by that last line, 'it doesn't remove the damn data either'? I wanna get rid of the large History Index files on my drive, will it do that? – Neil – 2011-02-06T07:05:41.230

0

All these answers were helpful but outdated. I found and use the "History Limiter Custom" plugin and it works flawlessly.

History Limiter Custom is a newer version of "History Limiter" which has better performance and is mostly bug-free.

https://chrome.google.com/webstore/detail/history-limiter-custom/ibpfkplbhnbiklpjacjbaelahebmbmpp/related

bdombro

Posted 2010-12-01T02:47:52.307

Reputation: 121