Mouse Odometer

Keep track of the distance your mouse has moved!

Mouse Odometer là gì?

Mouse Odometer là một tiện ích mở rộng Chrome được phát triển bởi travis.lawrence12, và tính năng chính của nó là "Keep track of the distance your mouse has moved!".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Mouse Odometer

Tải xuống các tệp mở rộng Mouse Odometer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Mouse Odometer Mouse Odometer
ID eemhobgckjipmjobdocfilbfapcbkano
URL Chính Thức https://chromewebstore.google.com/detail/mouse-odometer/eemhobgckjipmjobdocfilbfapcbkano
Mô tả Keep track of the distance your mouse has moved!
Kích Thước Tệp 79.44 KB
Số Lần Cài Đặt 139
Phiên Bản Hiện Tại 0.9.2
Cập Nhật Lần Cuối 2023-12-25
Ngày Phát Hành 2021-03-26
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển travis.lawrence12
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://chromewebstore.google.com/detail/mouse-odometer/eemhobgckjipmjobdocfilbfapcbkano?hl=en-US
URL Trang Trợ Giúp https://redundantrobot.com/
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}