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