Mouse Odometer

Keep track of the distance your mouse has moved!

什么是Mouse Odometer?

Mouse Odometer是由travis.lawrence12开发的Chrome扩展程序,该扩展的主要功能是“Keep track of the distance your mouse has moved!”。

扩展截图

screenshot

下载Mouse Odometer扩展crx文件

下载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"
    ]
}