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
Eメール [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"
    ]
}