Canvas Capture

Capture video from canvas elements

Canvas Capture란 무엇입니까?

Canvas Capture은(는) Unknown에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Capture video from canvas elements"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        The Canvas Capture extension allows video to be captured from HTML canvas elements.

Currently, video is only output in the webm container in the browser's choice of codec (typically VPX).

To use, simply navigate to a page with an animated canvas element and click the extension's browser action (toolbar button). A list of canvases present on the page will be displayed with some details about each one. Click the capture button next to the canvas that should be captured. When finished, click the stop button and a link will be generated to download the resulting video file (the file is constructed using Blobs; no network access is required).

Captured videos can be previewed before they are downloaded. By default, videos are remuxed using libwebm in WebAssembly to produce a more useful video file that is seekable and shows a duration and progress in video players.

Canvas Capture produces video files of canvas elements using the MediaRecorder, MediaStream and Blob APIs.                    

확장 프로그램 기본 정보

이름 Canvas Capture Canvas Capture
ID pnhaaddlgbpchligciolcdjgndcpelee
공식 URL https://chromewebstore.google.com/detail/canvas-capture/pnhaaddlgbpchligciolcdjgndcpelee
설명 Capture video from canvas elements
파일 크기 213 KB
설치 횟수 1,156
현재 버전 1.3.0
최근 업데이트 2019-03-28
출시 날짜 2019-03-27
평점 5.00/5 총 1 개의 평점
개발자 Unknown
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/sharmalay/canvas_capture
도움말 페이지 URL https://github.com/sharmalay/canvas_capture/issues
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Canvas Capture",
    "version": "1.3.0",
    "description": "Capture video from canvas elements",
    "author": "Chase",
    "icons": {
        "16": "\/img\/png\/icon_16.png",
        "32": "\/img\/png\/icon_32.png",
        "48": "\/img\/png\/icon_48.png",
        "64": "\/img\/png\/icon_64.png",
        "128": "\/img\/png\/icon_128.png"
    },
    "permissions": [
        "activeTab",
        "storage",
        "notifications",
        "webNavigation",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "background": {
        "scripts": [
            "lib\/webextension-polyfill\/browser-polyfill.min.js",
            "capture\/utils.js",
            "background.js"
        ],
        "persistent": false
    },
    "options_ui": {
        "page": "\/options\/options.html"
    },
    "browser_action": {
        "default_title": "Canvas Capture",
        "browser_style": false
    },
    "web_accessible_resources": [
        "\/capture\/*.html",
        "\/capture\/*.css",
        "\/capture\/img\/*",
        "\/capture\/utils.js",
        "\/wasm\/worker.js",
        "\/wasm\/build\/webm_muxer.js",
        "\/wasm\/build\/webm_muxer.wasm"
    ],
    "minimum_chrome_version": "57"
}