Screencast Helper

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

Screencast Helper là gì?

Screencast Helper là một tiện ích mở rộng Chrome được phát triển bởi Dimanoid, và tính năng chính của nó là "Shows mouse clicks and allows to draw on screen to highlight areas".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Screencast Helper

Tải xuống các tệp mở rộng Screencast Helper dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Screencast Helper Screencast Helper
ID hjalpioiddoknldioonopcfkhackecbl
URL Chính Thức https://chromewebstore.google.com/detail/screencast-helper/hjalpioiddoknldioonopcfkhackecbl
Mô tả Shows mouse clicks and allows to draw on screen to highlight areas
Kích Thước Tệp 25.13 KB
Số Lần Cài Đặt 390
Phiên Bản Hiện Tại 1.0.5
Cập Nhật Lần Cuối 2018-02-10
Ngày Phát Hành 2018-02-10
Đánh Giá 1.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Dimanoid
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    }
}