Vento

Vento Chrome Extension

ما هو Vento؟

Vento هو إضافة Chrome تم تطويرها بواسطة https://vento.so، والميزة الرئيسية لها هي "Vento Chrome Extension".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Vento

قم بتنزيل ملفات الامتداد Vento بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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/
عنوان صفحة سياسة الخصوصية 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": []
}