Mouse Odometer

Keep track of the distance your mouse has moved!

Cos'è Mouse Odometer?

Mouse Odometer è un'estensione di Chrome sviluppata da travis.lawrence12, e la sua funzione principale è "Keep track of the distance your mouse has moved!".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Mouse Odometer

Scarica i file di estensione Mouse Odometer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Mouse Odometer Mouse Odometer
ID eemhobgckjipmjobdocfilbfapcbkano
URL Ufficiale https://chromewebstore.google.com/detail/mouse-odometer/eemhobgckjipmjobdocfilbfapcbkano
Descrizione Keep track of the distance your mouse has moved!
Dimensione del File 79.44 KB
Conteggio Installazioni 139
Versione Corrente 0.9.2
Ultimo Aggiornamento 2023-12-25
Data di Pubblicazione 2021-03-26
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore travis.lawrence12
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://chromewebstore.google.com/detail/mouse-odometer/eemhobgckjipmjobdocfilbfapcbkano?hl=en-US
URL della Pagina di Aiuto https://redundantrobot.com/
Lingue Supportate 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"
    ]
}