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文件

下載Cursor Traveler: mouse move counter擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

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