Screencast Helper

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

Was ist Screencast Helper?

Screencast Helper ist eine Chrome-Erweiterung, die von Dimanoid entwickelt wurde, und ihr Hauptmerkmal ist "Shows mouse clicks and allows to draw on screen to highlight areas".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Screencast Helper-Erweiterungs-CRX-Datei herunterladen

Laden Sie Screencast Helper-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Screencast Helper Screencast Helper
ID hjalpioiddoknldioonopcfkhackecbl
Offizielle URL https://chromewebstore.google.com/detail/screencast-helper/hjalpioiddoknldioonopcfkhackecbl
Beschreibung Shows mouse clicks and allows to draw on screen to highlight areas
Dateigröße 25.13 KB
Installationsanzahl 390
Aktuelle Version 1.0.5
Letztes Update 2018-02-10
Veröffentlichungsdatum 2018-02-10
Bewertung 1.00/5 Insgesamt 1 Bewertungen
Entwickler Dimanoid
Zahlungsart free
Unterstützte Sprachen 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"
        }
    }
}