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에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This is an offline Google Chrome extention. This is extension will highlight your mouse cursor and your mouse clicks."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Mouse Click Highlighter (mClick) 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
}