Warpwire Screen Capture

This screen capturing extension allows for the capture of screen or application window data into Warpwire.

Warpwire Screen Capture란 무엇입니까?

Warpwire Screen Capture은(는) warpwiredev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This screen capturing extension allows for the capture of screen or application window data into Warpwire."입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        Warpwire Screen Capture is a free extension that allows Warpwire users to record their screens and save the recording to Warpwire, without leaving the browser. 

This extension is required for Screen Capture within Warpwire. Any Warpwire user who is interested in screen capture should install this plugin.

Users can record either an individual window, or their entire screen. Simply install the extension and make a recording. 

* Screen Capture within the Browser
* Save recordings directly to Warpwire Media Libraries
* Record entire screen or single window
* Use native camera and mic, or attached USB cameras and mic                    

확장 프로그램 기본 정보

이름 Warpwire Screen Capture Warpwire Screen Capture
ID iljpecogeagjijkjnnghgapofcdejmej
공식 URL https://chromewebstore.google.com/detail/warpwire-screen-capture/iljpecogeagjijkjnnghgapofcdejmej
설명 This screen capturing extension allows for the capture of screen or application window data into Warpwire.
파일 크기 11.67 KB
설치 횟수 617
현재 버전 1.0.0
최근 업데이트 2017-10-05
출시 날짜 2017-10-05
평점 4.00/5 총 5 개의 평점
개발자 warpwiredev
결제 유형 free
확장 프로그램 웹 사이트 https://www.warpwire.com/
도움말 페이지 URL https://www.warpwire.com/support/capture/screen-capture
개인정보 보호 정책 페이지 URL https://www.warpwire.com/legal/privacy-policy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Warpwire Screen Capture",
    "author": "Warpwire",
    "version": "1.0.0",
    "default_locale": "en",
    "manifest_version": 2,
    "minimum_chrome_version": "34",
    "description": "This screen capturing extension allows for the capture of screen or application window data into Warpwire.",
    "homepage_url": "https:\/\/www.warpwire.com",
    "background": {
        "scripts": [
            "background-script.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "js": [
                "content-script.js"
            ],
            "all_frames": true,
            "run_at": "document_end",
            "matches": [
                "https:\/\/bootstrap.warpwire.com\/*"
            ]
        }
    ],
    "icons": {
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "permissions": [
        "desktopCapture"
    ],
    "web_accessible_resources": [
        "icon-48.png",
        "icon-128.png"
    ]
}