Chrome Browsing History By Date
By default, Chrome offers a simple history page wherein you can access all of your previous browsing activities. These include the sites that you’ve previously visited, the videos that you’ve previously watched, the words that you’ve previously searched, etc. However, there’s no easy way to sort out your history list. You cannot even search your Chrome history by date or tags.
I can't delete browsing history in google chrome Solved/Closed naaskamal 5 Posts Thursday September 4, 2014Registration date January 11, 2015 Last seen - Jan 11, 2015 at 01:15 PM - Latest reply: Csre4dogs - Sep 28, 2016 at 02:00 PM.
Fortunately, there’s a quick and easy workaround that will enable you to apply some advanced search options to your Chrome browser’s history page. Just follow the steps listed in this guide to learn how.
Step One
Open your Chrome browser and then go to Web Store. Thereafter, download and install the extension called “Better History”.
Step Two
Once installed, go to your browser’s extensions page (chrome://extensions/) and make sure that the “Better History” extension is enabled. After which, go to your browser’s history page (type “chrome://history” on the address bar then press “Enter” or simply type “Ctrl + H”).
Step Three
You’ll then notice that your browser’s default history page has been modified in such a way that all your browsing activities are sorted out by specific dates. If you want to view the history list for a specific week or date, just click on the options listed on the left panel.
Step Four
If you want to search by tags, just click on the “Tags” option which is located on the top-most portion of the left panel. After which, simply choose a particular tag to view of all of the links and pages that are related to that tag. It’s already up to you if you wish to delete or move the items listed under that specific tag.
Step Five (optional)
If you want, you can also use the built-in search bar to search your browsing history by title, URL or date. Just enter the word or link that you want then press “Enter”. The results will be immediately shown.
With the help of this extension, you can manage your Chrome’s browsing history in a more efficient manner. It will also allow you to easily trace your browsing activities without wasting too much time and effort.
I originally posted this question looking for an answer with using python, got some good help, but have still not been able to find a solution. I have a script running on OS X 10.5 client machines that captures internet browsing history (required as part of my sys admin duties in a US public school). Firefox 3.x stores history in a sqlite db, and I have figured out how to get that info out using python/sqlite3. Firefox 3.x uses a conventional unixtimestamp to mark visits and that is not difficult to convert... Chrome also stores browser history in a sqlite db, but its timestamp is formatted as the number of microseconds since January, 1601. I'd like to figure this out using python, but as far as I know, the sqlite3 module doesn't support that UTC format. Is there another tool out there to convert Chrome timestamps to a human readable format?
Chrome View History By Date
SilentGhost1 Answer
Use the datetime
module. For example, if the number of microseconds in questions is 10**16:
this tells you it was just past a quarter to 6pm of November 21, 1917. You can format datetime
objects in any way you want thanks to their strftime
method, of course. If you also need to apply timezones (other than the UTC you start with), look at third-party module pytz.