Mouse Statistics

Tracks mouse events & key presses

什么是Mouse Statistics?

Mouse Statistics是由https://www.pavsesh.com开发的Chrome扩展程序,该扩展的主要功能是“Tracks mouse events & key presses”。

扩展截图

screenshot
screenshot

下载Mouse Statistics扩展crx文件

下载Mouse Statistics扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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!                    

扩展基本信息

名称 Mouse Statistics Mouse Statistics
ID dhalffenjnikgfekfdlohiehdbideadk
官方URL https://chromewebstore.google.com/detail/mouse-statistics/dhalffenjnikgfekfdlohiehdbideadk
简介 Tracks mouse events & key presses
文件大小 19.09 KB
安装次数 55
当前版本 1.0.2
更新时间 2018-05-31
上架时间 2018-05-31
评分 5.00/5 共1次评分
开发者 https://www.pavsesh.com
付费类型 free
支持的语言 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
}