Cursor Traveler: mouse move counter

Count how many moves make your mouse

Cursor Traveler: mouse move counter란 무엇입니까?

Cursor Traveler: mouse move counter은(는) Dmytro Filipenko에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Count how many moves make your mouse"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Cursor Traveler: mouse move counter 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Your mouse cursor does a pretty good amount of moving. It darts from buttons to text boxes to links, always sending you to the next thing you want to look at. Those movements are all pretty small – only a couple centimeters across the front of your monitor… and yet one could easily see them adding up to pretty good distances over time. So, how far does a mouse cursor travel?

Coming soon:
♛ Convert metric units to imperial units and vice versa
♛ Fancy graphs of daily usage
...and many more

Source of extension: https://github.com/dmfilipenko/cursor-traveler                    

확장 프로그램 기본 정보

이름 Cursor Traveler: mouse move counter Cursor Traveler: mouse move counter
ID fpaofkicpfiiifjpmkcadjpedlohpgep
공식 URL https://chromewebstore.google.com/detail/cursor-traveler-mouse-mov/fpaofkicpfiiifjpmkcadjpedlohpgep
설명 Count how many moves make your mouse
파일 크기 201 KB
설치 횟수 2,608
현재 버전 2.0.5
최근 업데이트 2020-02-10
출시 날짜 2020-02-10
평점 4.00/5 총 9 개의 평점
개발자 Dmytro Filipenko
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/dmfilipenko/cursor-traveler
도움말 페이지 URL https://github.com/dmfilipenko/cursor-traveler
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Cursor Traveler: mouse move counter",
    "description": "Count how many moves make your mouse",
    "version": "2.0.5",
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "icons": {
        "16": "16.png",
        "32": "32.png",
        "48": "48.png",
        "128": "128.png"
    },
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'",
    "browser_action": {
        "default_icon": "128.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content_script.js"
            ],
            "all_frames": true
        }
    ],
    "background": {
        "scripts": [
            "js\/analytics.js",
            "js\/background.js"
        ]
    },
    "offline_enabled": true,
    "permissions": [
        "",
        "storage"
    ]
}