GitXplorerGitXplorer
T

browsing-activity-tracker

public
20 stars
5 forks
3 issues

Commits

List of commits on branch master.
Unverified
77956372fe739aba405f6fd48fd633bed6a1eb87

[Firefox add-on] Clean up directory

TThibauth committed 11 years ago
Unverified
27e237cbc975bd0023bacd3bb800a0de518b2fce

[Chrome extension] Disable spellchecking in option page, fix url

TThibauth committed 11 years ago
Unverified
cf2f19f91ec703244204de039c6663f76c722c77

Make event logging more conservative in case of multiple windows

TThibauth committed 11 years ago
Unverified
dd5bee919c00a372679858f9ba10e4caf6170fb1

Minor corrections to README

TThibauth committed 11 years ago
Unverified
fd0b905876bac80335dcb10a9749c520f1b588ff

Better packaging, icons

TThibauth committed 11 years ago
Unverified
74d24b869e18ffb30bf9caa6614153a707340469

[Chrome extension] Better option page

TThibauth committed 11 years ago

README

The README file for this repository.

Browsing Activity Tracker

This extension provides a flexible way to log your browsing activity. In particular, it allows you to track how much time you spend on websites. The approach is minimalistic and give you direct access to the raw browsing data that you can then analyze and aggregate to your taste.

In contrast, other extensions with the same purpose often require that you create an account on their website and store your browsing data. Furthermore, they only give you access to an automatically generated report with very little control over how it is produced.

Installation ++++++++++++

The extension is available both as a Firefox add-on and as a Chrome extension:

  • Install__ from the Firefox Add-Ons Website
  • Install__ from the Chrome Web Store

To install directly from source, refer to the README files in the respective subfolders.

__ https://addons.mozilla.org/en-US/firefox/addon/browsing-activity-tracker/ __ https://chrome.google.com/webstore/detail/browsing-activity-tracker/maialhkckkpdbhimboiimgdgmhlianje

How does it work? +++++++++++++++++

The extension notifies a callback URL by sending an HTTP POST request whenever one the following events occur:

  • a browser window is activated (gains focus)
  • a tab is activated
  • a webpage is loaded (when you follow a link, or navigate through your history)
  • a browser window is deactivated (loses focus)

The body of the POST request is a JSON object containing the following keys:

=========== =========== Key Name Description =========== =========== title Title of the webpage (typically the content of the <title> tag) url URL of the webpage time Time at which the event occurred. Number of milliseconds elapsed since 1 January 1970 00:00:00 UTC key A key identifying the browser sending the request favicon The URL of the webpage's favicon (or null when there is no favicon) =========== ===========

For window deactivation events, all the keys except for the time key are set to null.

Example of request body:

.. code:: json

{"url":"https://github.com/Thibauth/browsing-activity-tracker",
 "time":1405458411242,
 "title":"Thibauth/browsing-activity-tracker",
 "key":"firefox",
 "favicon":"https://assets-cdn.github.com/favicon.ico"}

Also note that the window activation and deactivation events are triggered by your window manager and vary depending on your configuration. For example, in window managers based on X11, a deactivation event is always triggered before an activation event.

Configuration +++++++++++++

The browser key and the callback URL can be customized in the extension preferences. The key is useful in settings where you are logging events from several browsers at the same time as well as to provide some (very limited) authentication. The default settings are:

============ =========== Option Default Value ============ =========== Callback URL http://localhost:8080 Browser Key firefox for Firefox, chrome for Chrome ============ ===========