Cursor Traveler: mouse move counter

Count how many moves make your mouse

Cursor Traveler: mouse move counterคืออะไร?

Cursor Traveler: mouse move counter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Dmytro Filipenko และคุณลักษณะหลักของมันคือ "Count how many moves make your mouse"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Cursor Traveler: mouse move counter

ดาวน์โหลดไฟล์ส่วนขยาย 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
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"
    ]
}