https://github.com/prayerslayer/tracker
A simple tool for tracking mouse and keyboard for a given time interval.
https://github.com/prayerslayer/tracker
Last synced: 4 months ago
JSON representation
A simple tool for tracking mouse and keyboard for a given time interval.
- Host: GitHub
- URL: https://github.com/prayerslayer/tracker
- Owner: prayerslayer
- Created: 2012-03-22T23:27:42.000Z (almost 14 years ago)
- Default Branch: master
- Last Pushed: 2013-02-24T16:56:37.000Z (almost 13 years ago)
- Last Synced: 2024-04-15T02:57:48.882Z (over 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 160 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Tracker
This is a simple Chrome extension that allows you to track mouse and keyboard for *n* seconds. I used it for user testing, so may you. Or fork it and use it for something else.
## Installation
Look [here](http://developer.chrome.com/extensions/getstarted.html#unpacked).
## Usage
Click on the extension icon, then enter the amount of seconds you want to track the mouse and keyboard. It stops automatically when the time is over and inserts a DIV in your webpage that contains the recorded data in JSON format.
## JSON Format
data = {
"clicks": {
"left": int,
"right": int
},
"scrolls": {
"up": int,
"down": int
},
"path": float,
"time_left": int,
"keyboard": char array
}
Please note that scrolls.up and scrolls.down do not work right now because I was too lazy to make it work.