Mouse-Tracker
An extension to gather mouse movement data for machine learning purposes
What is Mouse-Tracker?
Mouse-Tracker is a Chrome extension developed by Unknown, and its main feature is "An extension to gather mouse movement data for machine learning purposes".
Extension Screenshots
Download Mouse-Tracker Extension CRX File
Download Mouse-Tracker extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Don't download this unless you know me personally
Extension Basic Information
Name | |
ID | ckemhfcbkcnaliahgkeogplmhcpodaog |
Official URL | https://chromewebstore.google.com/detail/mouse-tracker/ckemhfcbkcnaliahgkeogplmhcpodaog |
Description | An extension to gather mouse movement data for machine learning purposes |
File Size | 33.14 KB |
Installation Count | 155 |
Current Version | 1.0 |
Last Updated | 2019-10-13 |
Publish Date | 2019-10-11 |
Rating | 5.00/5 Total 1 Ratings |
Developer | Unknown |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Mouse-Tracker", "description": "An extension to gather mouse movement data for machine learning purposes", "version": "1.0", "manifest_version": 2, "permissions": [ "storage" ], "browser_action": { "default_popup": "opts-menu.html" }, "background": { "scripts": [ "scripts\/movement-aggregator.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "scripts\/mouse-track.js" ] } ] } |