WebBoard Screen Capturing

Capture full-screen or specific application's screen on web-whiteboard.io!

WebBoard Screen Capturing란 무엇입니까?

WebBoard Screen Capturing은(는) CodeLabs Studio에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Capture full-screen or specific application's screen on web-whiteboard.io!"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        This is a webboard.io screen capturing extension for Google Chrome.                    

확장 프로그램 기본 정보

이름 WebBoard Screen Capturing WebBoard Screen Capturing
ID fbmoemmfcifjcokcikkhgemdedhmpcpn
공식 URL https://chromewebstore.google.com/detail/webboard-screen-capturing/fbmoemmfcifjcokcikkhgemdedhmpcpn
설명 Capture full-screen or specific application's screen on web-whiteboard.io!
파일 크기 9.03 KB
설치 횟수 23
현재 버전 4.0
최근 업데이트 2020-03-02
출시 날짜 2020-03-02
평점 5.00/5 총 2 개의 평점
개발자 CodeLabs Studio
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "WebBoard Screen Capturing",
    "author": "Marko Mileti\u0107",
    "version": "4.0",
    "manifest_version": 2,
    "minimum_chrome_version": "34",
    "description": "Capture full-screen or specific application's screen on web-whiteboard.io!",
    "background": {
        "scripts": [
            "background-script.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "js": [
                "content-script.js"
            ],
            "all_frames": true,
            "run_at": "document_end",
            "matches": [
                "https:\/\/*.web-whiteboard.io\/*"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "https:\/\/*.web-whiteboard.io\/*"
        ]
    },
    "icons": {
        "48": "icon.png"
    },
    "permissions": [
        "desktopCapture"
    ],
    "web_accessible_resources": [
        "icon.png"
    ]
}