This code retrieves Google Calendar events matching a specific query ("study sauce") between two dates and then summarizes those events, sending the result to a client.
convert chrome date to calendar dateThis code defines a function that converts a Chrome-specific date format (microseconds since a specific epoch) into a standard JavaScript Date object. It's designed to make working with Chrome's date representation easier within a JavaScript application.
Parse bookmarks fileThis code extracts structured bookmark data from Chrome's exported HTML files found in Google Takeout, enabling programmatic access and manipulation of the bookmarks. It uses a custom DOM parsing function to navigate the HTML structure and retrieve relevant information about each bookmark.
get bookmarks from local chrome databaseThis code retrieves and processes today's browsing history from a Chrome SQLite database, likely for analysis or reporting.
test parse bookmarksThis code extracts bookmarks from a Google Takeout file and sends the extracted data to another system for further use.
sync chrome bookmarksThis code synchronizes your Chrome browsing history with a Google Calendar, creating time-based events for each bookmark folder. It groups bookmarks by half-hour intervals and generates calendar events with summaries and descriptions based on the bookmark data.
sync chrome historyThis code synchronizes your Chrome browsing history from Takeout files into a Google Calendar, creating a visual timeline of your online activity grouped by half-hour intervals.
sync chrome dataThis code automates the process of syncing your Chrome browsing history and bookmarks with Google Calendar by downloading, extracting, and processing your Google Takeout archive.
test syn chrome dataThis code synchronizes Chrome data and sends the outcome (success or error) to a client application.