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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
}