Screencast Helper

Shows mouse clicks and allows to draw on screen to highlight areas

什么是Screencast Helper?

Screencast Helper是由Dimanoid开发的Chrome扩展程序,该扩展的主要功能是“Shows mouse clicks and allows to draw on screen to highlight areas”。

扩展截图

screenshot
screenshot
screenshot

下载Screencast Helper扩展crx文件

下载Screencast Helper扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        This small extension can help you when you casting or capturing video of some web application or site or whatever. It shows the ripple effect on the point where you clicked with a mouse and have a "drawing mode" that allows you to draw over the page. Drawing mode can be turned on and off with a hot key. You can also change size, shape and color of the ripple and brush.                    

扩展基本信息

名称 Screencast Helper Screencast Helper
ID hjalpioiddoknldioonopcfkhackecbl
官方URL https://chromewebstore.google.com/detail/screencast-helper/hjalpioiddoknldioonopcfkhackecbl
简介 Shows mouse clicks and allows to draw on screen to highlight areas
文件大小 25.13 KB
安装次数 390
当前版本 1.0.5
更新时间 2018-02-10
上架时间 2018-02-10
评分 1.00/5 共1次评分
开发者 Dimanoid
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "short_name": "__MSG_appShortName__",
    "description": "__MSG_appDescription__",
    "version": "1.0.5",
    "manifest_version": 2,
    "default_locale": "en",
    "icons": {
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png"
    },
    "background": {
        "persistent": true,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "main.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "browser_action": {
        "default_icon": {
            "19": "images\/icon-19.png",
            "38": "images\/icon-38.png"
        },
        "default_title": "__MSG_browserActionTitle__"
    },
    "options_page": "pages\/options.html",
    "options_ui": {
        "page": "pages\/options.html",
        "chrome_style": true
    },
    "permissions": [
        "storage",
        ""
    ],
    "commands": {
        "toggle-canvas": {
            "suggested_key": {
                "default": "Ctrl+Shift+S"
            },
            "description": "Toggle canvas drawing on\/off"
        }
    }
}