Screencast Helper

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

Screencast Helperคืออะไร?

Screencast Helper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Dimanoid และคุณลักษณะหลักของมันคือ "Shows mouse clicks and allows to draw on screen to highlight areas"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Screencast Helper

ดาวน์โหลดไฟล์ส่วนขยาย 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"
        }
    }
}