JosephusPaye / yhee

⌛ Time tracking browser extension: track how much time you spend on different websites and webpages.

Home Page:https://chrome.google.com/webstore/detail/yhee-time-tracker/jfbnogkpfjchbnamkpbgacpnnegpgjgj

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Yhee

Yhee is a time tracking browser extension that tracks how much time you spend on different websites and webpages, and displays the results in beautiful charts. Tracking is strictly opt-in, and all tracked data is stored locally, never leaving your computer.

This project is part of #CreateWeekly, my attempt to create something new publicly every week in 2020.

Screenshot of Yhee popup

Screenshot of Yhee dashboard

How to use

Setup

View reports

  • To see how much time you've spent on a domain for the day, visit the domain, and click the extension icon.
  • To see detailed charts for today, for the week, and for all time, click the extension icon, then click Dashboard.

Stop tracking

To stop tracking a domain, visit the domain, click the extension icon, and then click Don't track this domain.

Note: previously tracked data for the domain will still remain in Yhee, until you clear your browsing data.

Design

The main idea behind the tracker in Yhee is the concept of "heartbeats". Heartbeats are timestamped events that are generated when you interact with a webpage on a domain that's tracked by Yhee.

For reporting, heartbeats are aggregated into "durations" (timespans with a start and an end) by combining consecutive heartbeats that are within a certain timeout threshold of each other. By default, this threshold is 15 minutes.

This means that if you load a page and scroll around for 2 minutes, switch to another tab or program and do something else for 15 minutes, then switch back and type for 1 minute, the duration generated will be 2 + 15 + 1 (18) minutes long. If instead you spent more than 15 minutes away from the tab, the generated duration will be 2 + 1 (3) minutes long.

This design was largely inspired by WakaTime's approach to time tracking.

Tracking details

Yhee tracks the following document events and generates heartbeats that indicate when you're active on a page:

  • scroll
  • click
  • keypress
  • mousemove

For performance reasons, these events are throttled to 5-second intervals, and generate at most one heartbeat every 2 minutes.

Additionally, these tab lifecycle events are tracked without throttling:

  • load
  • unload
  • focus
  • blur

Each heartbeat stores the the type of event that triggered it, the current time, origin, path, and title of the page at the time the event was triggered. The following is the heartbeat generated when you visit GitHub's notifications page:

{
  "origin": "https://github.com",
  "path": "/notifications",
  "time": 1579004038495,
  "title": "Notifications",
  "type": "load"
}

Todo

  • Collect and store heartbeats and activity data for domains and pages
  • Make popup show total time spent today on the active site
  • Add dashboard UI with basic "top domains" chart
  • Add support for opt-in (track only an allowed list of domains)
  • Add support for opt-out (stop tracking an allowed domain)
  • Switch to better storage and querying system: e.g. IndexedDB

Maybe later (contributions welcome)

  • Make timeout threshold a configurable setting
  • Add ability to view all tracked domains in dashboard, and remove a tracked domain with its data
  • Add more charts
    • Per-domain chart showing top pages
    • Duration chart that shows what times of the day the each domain/page was visited
  • Add dark mode for the popup and dashboard, and automatically switch based on current browser/OS setting
  • Add a syncing system to share data across devices
  • Add export option: export heartbeat data as JSON
  • Rewrite in TypeScript (currently has JSDoc types that are checked by TypeScript in VSCode)

Contributing

See contribution guide.

Licence

MIT

About

⌛ Time tracking browser extension: track how much time you spend on different websites and webpages.

https://chrome.google.com/webstore/detail/yhee-time-tracker/jfbnogkpfjchbnamkpbgacpnnegpgjgj

License:MIT License


Languages

Language:JavaScript 59.3%Language:Vue 39.4%Language:HTML 0.9%Language:CSS 0.5%