Mouse Odometer

Keep track of the distance your mouse has moved!

Mouse Odometer क्या है?

Mouse Odometer travis.lawrence12 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Keep track of the distance your mouse has moved!"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Mouse Odometer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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