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
官方網址 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
}