Mouse Click Highlighter (mClick)

This is an offline Google Chrome extention. This is extension will highlight your mouse cursor and your mouse clicks.

Mouse Click Highlighter (mClick) क्या है?

Mouse Click Highlighter (mClick) https://tutorialgeek.net द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This is an offline Google Chrome extention. This is extension will highlight your mouse cursor and your mouse clicks."।

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

screenshot
screenshot

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

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

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

                        IMPORTANT NOTE BEFORE INSTALLING: To use this extension for the first time, you must right-click the options and press the "Save" or "Reset" button. After that you can left click the icon to toggle the extension on or off.

Use this Chrome extension for the following:
* While doing a screencast recording, this will clearly show where your mouse cursor is and where you click on the page. This can be useful for doing webapp tutorials.
* While doing an online presentation, this can help so that your audience can clearly see where your mouse cursor is.
* If you use Chromecast, this can highlight your mouse cursor to make it easier to spot.

Note: My favorite software for for recording gif screencasts is ShareX (https://getsharex.com/) for Windows and LICEcap (http://www.cockos.com/licecap/) for Linux (must use Wine to install LICEcap in Linux).                    

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

नाम Mouse Click Highlighter (mClick) Mouse Click Highlighter (mClick)
ID faacfelnnfhdicdmkdeclkeanllppdbm
आधिकारिक URL https://chromewebstore.google.com/detail/mouse-click-highlighter-m/faacfelnnfhdicdmkdeclkeanllppdbm
विवरण This is an offline Google Chrome extention. This is extension will highlight your mouse cursor and your mouse clicks.
फ़ाइल का आकार 132 KB
स्थापना संख्या 6,470
वर्तमान संस्करण 0.4.6.4
अंतिम अपडेट 2016-07-29
प्रकाशन तिथि 2016-07-28
रेटिंग 2.40/5 कुल 78 रेटिंग्स
डेवलपर https://tutorialgeek.net
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/mckayc/McLick
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Mouse Click Highlighter (mClick)",
    "description": "This is an offline Google Chrome extention. This is extension will highlight your mouse cursor and your mouse clicks.",
    "version": "0.4.6.4",
    "permissions": [
        "",
        "storage"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "persistent": true,
        "scripts": [
            "highlight.js",
            "onOffToggle.js"
        ]
    },
    "browser_action": {
        "default_icon": "off.png"
    },
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery\/jquery-3.1.0.min.js",
                "highlight.js"
            ],
            "all_frames": true
        }
    ],
    "options_page": "userOptions.html"
}