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 파일 다운로드

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

확장 프로그램 사용 설명서

                        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"
    }
}