Vento

Vento Chrome Extension

Vento란 무엇입니까?

Vento은(는) https://vento.so에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Vento Chrome Extension"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Vento 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Chrome Extension supporting https://vento.so/, a stress free video recording website which allows you to rewind and film over mistakes as you record. Vento supports link sharing, presenter bubbles, and more!

This extension adds a toolbar to easily pause or restart your recording, annotate your screen, or point and click as you go!                    

확장 프로그램 기본 정보

이름 Vento Vento
ID kcjkmcmcpompphkoaokebhhhindnfpnp
공식 URL https://chromewebstore.google.com/detail/vento/kcjkmcmcpompphkoaokebhhhindnfpnp
설명 Vento Chrome Extension
파일 크기 168 KB
설치 횟수 6,407
현재 버전 1.1.2
최근 업데이트 2024-02-16
출시 날짜 2023-01-06
평점 4.69/5 총 13 개의 평점
개발자 https://vento.so
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://vento.so/
개인정보 보호 정책 페이지 URL https://vento.so/policy
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Vento",
    "version": "1.1.2",
    "description": "Vento Chrome Extension",
    "manifest_version": 3,
    "icons": {
        "48": "favicon.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "commands": {
        "Start Recording": {
            "suggested_key": {
                "default": "Alt+Shift+V",
                "mac": "Alt+Shift+V"
            },
            "description": "Start Recording"
        },
        "Pause Recording": {
            "suggested_key": {
                "default": "Alt+Shift+P",
                "mac": "Alt+Shift+P"
            },
            "description": "Pause Ongoing Recording"
        },
        "Delete Recording": {
            "suggested_key": {
                "default": "Alt+Shift+D",
                "mac": "Alt+Shift+D"
            },
            "description": "Delete Ongoing Recording"
        },
        "Highlight Clicks": {
            "suggested_key": {
                "default": "Alt+Shift+C",
                "mac": "Alt+Shift+C"
            },
            "description": "Highlight Clicks"
        },
        "Highlight Cursor": {
            "description": "Highlight Cursor"
        },
        "Enable Pen Tool": {
            "description": "Enable Pen Tool"
        },
        "Enable Eraser Tool": {
            "description": "Enable Eraser Tool"
        },
        "Annotation Color Selection": {
            "description": "Annotation Color Selection"
        },
        "Enable Text Tool": {
            "description": "Enable Text Tool"
        },
        "Enable Arrow Tool": {
            "description": "Enable Arrow Tool"
        },
        "Delete All Annotation": {
            "description": "Delete All Annotation"
        }
    },
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "favicon.png",
                "css\/content.css",
                "assets\/images\/*",
                "libraries\/jquery-3.5.1.min.js",
                "libraries\/fabric.min.js",
                "libraries\/pickr.min.js",
                "libraries\/arrow.js",
                "js\/content.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                ".\/css\/content.css",
                ".\/css\/libraries\/pickr.css"
            ],
            "js": [
                ".\/libraries\/jquery-3.5.1.min.js",
                ".\/libraries\/fabric.min.js",
                ".\/libraries\/pickr.min.js",
                ".\/libraries\/arrow.js",
                ".\/js\/content.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "activeTab",
        "scripting",
        "commands"
    ],
    "action": []
}