Screen Recorder

Records a narrated video of your computer screen

Screen Recorder란 무엇입니까?

Screen Recorder은(는) https://userbob.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Records a narrated video of your computer screen"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        This extension provides a simple way to record short videos of your computer's screen.   To stop recording and download your video, tap the extension's icon and click "End Recording".   This provides an easy way to create a screencast or tutorial of how to do something on a computer.   Perfect for recording user testing sessions as well.  Great for UserBob HITs on mturk.

DO NOT ATTEMPT TO USE THIS TO RECORD VIDEOS LONGER THAN 30 MINUTES.  Many users have reported that the extension won't save videos that are longer than that.

The code for this open source project is available at: https://github.com/JohnWeidner/ScreenRecorderExtension

Privacy Policy is available at: https://userbob.com/screenRecorderPrivacy.html                    

확장 프로그램 기본 정보

이름 Screen Recorder Screen Recorder
ID olfiakiemgabphalhjfjbcmganhfkbcg
공식 URL https://chromewebstore.google.com/detail/screen-recorder/olfiakiemgabphalhjfjbcmganhfkbcg
설명 Records a narrated video of your computer screen
파일 크기 217 KB
설치 횟수 44,245
현재 버전 0.20.4
최근 업데이트 2023-03-06
출시 날짜 2018-09-12
평점 2.85/5 총 55 개의 평점
개발자 https://userbob.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://userbob.com/screenRecorderPrivacy.html
도움말 페이지 URL https://userbob.com/screenRecorderPrivacy.html
개인정보 보호 정책 페이지 URL https://userbob.com/screenRecorderPrivacy.html
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Screen Recorder",
    "description": "Records a narrated video of your computer screen",
    "version": "0.20.4",
    "manifest_version": 2,
    "icons": {
        "16": "assets\/icon.png",
        "128": "assets\/icon.png"
    },
    "background": {
        "scripts": [
            "src\/background.js",
            "src\/ourrecorder.js"
        ]
    },
    "browser_action": {
        "default_icon": "assets\/icon.png",
        "default_popup": "src\/receiver.html"
    },
    "options_ui": {
        "page": "src\/options.html",
        "chrome_style": true
    },
    "permissions": [
        "desktopCapture",
        "notifications",
        "activeTab",
        "storage",
        "unlimitedStorage",
        "downloads"
    ]
}