Cursor Traveler: mouse move counter

Count how many moves make your mouse

Cursor Traveler: mouse move counter क्या है?

Cursor Traveler: mouse move counter Dmytro Filipenko द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Count how many moves make your mouse"।

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

screenshot
screenshot

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

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

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

                        Your mouse cursor does a pretty good amount of moving. It darts from buttons to text boxes to links, always sending you to the next thing you want to look at. Those movements are all pretty small – only a couple centimeters across the front of your monitor… and yet one could easily see them adding up to pretty good distances over time. So, how far does a mouse cursor travel?

Coming soon:
♛ Convert metric units to imperial units and vice versa
♛ Fancy graphs of daily usage
...and many more

Source of extension: https://github.com/dmfilipenko/cursor-traveler                    

एक्सटेंशन की मूल जानकारी

नाम Cursor Traveler: mouse move counter Cursor Traveler: mouse move counter
ID fpaofkicpfiiifjpmkcadjpedlohpgep
आधिकारिक URL https://chromewebstore.google.com/detail/cursor-traveler-mouse-mov/fpaofkicpfiiifjpmkcadjpedlohpgep
विवरण Count how many moves make your mouse
फ़ाइल का आकार 201 KB
स्थापना संख्या 2,608
वर्तमान संस्करण 2.0.5
अंतिम अपडेट 2020-02-10
प्रकाशन तिथि 2020-02-10
रेटिंग 4.00/5 कुल 9 रेटिंग्स
डेवलपर Dmytro Filipenko
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/dmfilipenko/cursor-traveler
सहायता पृष्ठ URL https://github.com/dmfilipenko/cursor-traveler
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Cursor Traveler: mouse move counter",
    "description": "Count how many moves make your mouse",
    "version": "2.0.5",
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "icons": {
        "16": "16.png",
        "32": "32.png",
        "48": "48.png",
        "128": "128.png"
    },
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'",
    "browser_action": {
        "default_icon": "128.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content_script.js"
            ],
            "all_frames": true
        }
    ],
    "background": {
        "scripts": [
            "js\/analytics.js",
            "js\/background.js"
        ]
    },
    "offline_enabled": true,
    "permissions": [
        "",
        "storage"
    ]
}