ScreenRun

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

什么是ScreenRun?

ScreenRun是由https://screenrun.app开发的Chrome扩展程序,该扩展的主要功能是“Quickly record a video of your tab with your voice and clicks and import into ScreenRun.app”。

扩展截图

screenshot

下载ScreenRun扩展crx文件

下载ScreenRun扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 ScreenRun ScreenRun
ID ohpjpoojklgnlhpfjhpekhpoapjinjfb
官方URL https://chromewebstore.google.com/detail/screenrun/ohpjpoojklgnlhpfjhpekhpoapjinjfb
简介 Quickly record a video of your tab with your voice and clicks and import into ScreenRun.app
文件大小 25.76 KB
安装次数 149
当前版本 1.1.1
更新时间 2023-04-26
上架时间 2023-04-26
开发者 https://screenrun.app
电子邮箱 [email protected]
付费类型 free
扩展官网 https://screenrun.app
帮助页面URL https://screenrun.app/help
隐私政策页面URL https://www.appblit.com/privacy
支持的语言 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"
    }
}