Mouse Statistics

Tracks mouse events & key presses

What is Mouse Statistics?

Mouse Statistics is a Chrome extension developed by https://www.pavsesh.com, and its main feature is "Tracks mouse events & key presses".

Extension Screenshots

screenshot
screenshot

Download Mouse Statistics Extension CRX File

Download Mouse Statistics 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

                        Ever wondered how much have you been moving your mouse pointer or how much have you scrolled in your browser viewing the web pages? This is the extension which shows that!                    

Extension Basic Information

Name Mouse Statistics Mouse Statistics
ID dhalffenjnikgfekfdlohiehdbideadk
Official URL https://chromewebstore.google.com/detail/mouse-statistics/dhalffenjnikgfekfdlohiehdbideadk
Description Tracks mouse events & key presses
File Size 19.09 KB
Installation Count 55
Current Version 1.0.2
Last Updated 2018-05-31
Publish Date 2018-05-31
Rating 5.00/5 Total 1 Ratings
Developer https://www.pavsesh.com
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Mouse Statistics",
    "version": "1.0.2",
    "description": "Tracks mouse events & key presses",
    "permissions": [
        "storage",
        "tabs",
        "activeTab",
        "*:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "all_frames": true,
            "js": [
                "scripts\/adapters\/chrome.js",
                "scripts\/tracker.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "scripts\/adapters\/chrome.js",
            "scripts\/background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_popup": "views\/popup.html",
        "default_icon": {
            "16": "images\/logo-16.png",
            "32": "images\/logo-32.png",
            "48": "images\/logo-48.png",
            "128": "images\/logo-128.png",
            "256": "images\/logo-256.png"
        }
    },
    "icons": {
        "16": "images\/logo-16.png",
        "32": "images\/logo-32.png",
        "48": "images\/logo-48.png",
        "128": "images\/logo-128.png",
        "256": "images\/logo-256.png"
    },
    "chrome_url_overrides": {
        "newtab": "views\/newtab.html"
    },
    "web_accessible_resources": [
        "images\/*",
        "scripts\/newtab.js"
    ],
    "manifest_version": 2
}