Mouse Odometer

Keep track of the distance your mouse has moved!

Mouse Odometerคืออะไร?

Mouse Odometer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย travis.lawrence12 และคุณลักษณะหลักของมันคือ "Keep track of the distance your mouse has moved!"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Mouse Odometer

ดาวน์โหลดไฟล์ส่วนขยาย Mouse Odometer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        How busy are you everyday surfing the web? Keep track of how far you move your cursor around the screen.

The mouse odometer will carefully track how far you move your mouse on the pages you browse! Be sure to check your movement history within the options menu and check what level you achieve.

Clicking on your total distance in the options will also show other metrics of distance you have traveled.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Mouse Odometer Mouse Odometer
ID eemhobgckjipmjobdocfilbfapcbkano
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/mouse-odometer/eemhobgckjipmjobdocfilbfapcbkano
คำอธิบาย Keep track of the distance your mouse has moved!
ขนาดไฟล์ 79.44 KB
จำนวนการติดตั้ง 139
เวอร์ชันปัจจุบัน 0.9.2
อัปเดตครั้งล่าสุด 2023-12-25
วันที่เผยแพร่ 2021-03-26
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา travis.lawrence12
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://chromewebstore.google.com/detail/mouse-odometer/eemhobgckjipmjobdocfilbfapcbkano?hl=en-US
URL หน้าช่วยเหลือ https://redundantrobot.com/
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Mouse Odometer",
    "version": "0.9.2",
    "manifest_version": 3,
    "description": "Keep track of the distance your mouse has moved!",
    "web_accessible_resources": [
        {
            "resources": [
                "public\/scripts\/utilities\/odometer.min.js",
                "public\/scripts\/application.js",
                "public\/styles\/odometer-theme-default.css",
                "public\/styles\/styles.css"
            ],
            "matches": []
        }
    ],
    "background": {
        "service_worker": "public\/scripts\/background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "public\/scripts\/utilities\/odometer.min.js",
                "public\/scripts\/application.js"
            ],
            "css": [
                "public\/styles\/odometer-theme-default.css",
                "public\/styles\/styles.css"
            ]
        }
    ],
    "action": {
        "default_title": "Mouse Odometer!",
        "default_popup": "options.html",
        "default_icon": "public\/images\/mouse_icon_white.png"
    },
    "icons": {
        "16": "public\/images\/mouse_icon_white.png",
        "128": "public\/images\/mouse_icon_white.png"
    },
    "options_page": "options.html",
    "permissions": [
        "activeTab",
        "storage"
    ]
}