ScreenRun

Quickly record a video of your tab with your voice and clicks and import into ScreenRun.app

¿Qué es ScreenRun?

ScreenRun es una extensión de Chrome desarrollada por https://screenrun.app, y su función principal es "Quickly record a video of your tab with your voice and clicks and import into ScreenRun.app".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión ScreenRun

Descarga archivos de extensión ScreenRun en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        ScreenRun helps you capture tabs by recording your clicks. It is meant as a companion to the ScreenRun web application.
In the ScreenRun studio (https://screenrun.app/studio) click "Screen" to pick the tab or browser window you would like to record.
During the recording, the extension remembers where and when you click.
When you are finished recording, the extension will make the mouse events available to the ScreenRun Studio web application to automatically place your points, saving you a lot of time because you will not have to place the zoom points manually.                    

Información Básica de la Extensión

Nombre ScreenRun ScreenRun
ID ohpjpoojklgnlhpfjhpekhpoapjinjfb
URL Oficial https://chromewebstore.google.com/detail/screenrun/ohpjpoojklgnlhpfjhpekhpoapjinjfb
Descripción Quickly record a video of your tab with your voice and clicks and import into ScreenRun.app
Tamaño del Archivo 25.76 KB
Cantidad de Instalaciones 149
Versión Actual 1.1.1
Última Actualización 2023-04-26
Fecha de Publicación 2023-04-26
Desarrollador https://screenrun.app
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://screenrun.app
URL de la Página de Ayuda https://screenrun.app/help
URL de la Página de Política de Privacidad https://www.appblit.com/privacy
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ScreenRun",
    "author": "ScreenRun LLC",
    "manifest_version": 3,
    "version": "1.1.1",
    "description": "Quickly record a video of your tab with your voice and clicks and import into ScreenRun.app",
    "options_page": "welcome.html",
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/localhost:8080\/studio",
                "https:\/\/screenrun.app\/studio"
            ],
            "js": [
                "screenrun.js"
            ],
            "all_frames": false,
            "run_at": "document_end"
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "all_frames": false,
            "run_at": "document_end"
        }
    ],
    "action": [],
    "icons": {
        "16": "icons\/off.png",
        "128": "icons\/off.png",
        "48": "icons\/off.png"
    }
}