SAGE2 Screen Capture

This chrome extension enables screensharing to SAGE2 walls

SAGE2 Screen Capture란 무엇입니까?

SAGE2 Screen Capture은(는) https://sage2.sagecommons.org에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This chrome extension enables screensharing to SAGE2 walls"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        This chrome extension is developed to be used in collaborative environments. It enables desktop sharing with large displays.                    

확장 프로그램 기본 정보

이름 SAGE2 Screen Capture SAGE2 Screen Capture
ID mbkfcmpjbkmmdcfocaclghbobhnjfpkk
공식 URL https://chromewebstore.google.com/detail/sage2-screen-capture/mbkfcmpjbkmmdcfocaclghbobhnjfpkk
설명 This chrome extension enables screensharing to SAGE2 walls
파일 크기 25.17 KB
설치 횟수 1,110
현재 버전 2.2.0
최근 업데이트 2021-09-06
출시 날짜 2018-10-29
평점 4.43/5 총 7 개의 평점
개발자 https://sage2.sagecommons.org
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://sage2.sagecommons.org/
도움말 페이지 URL https://groups.google.com/forum/#!forum/sage2
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SAGE2 Screen Capture",
    "author": "Thomas Marrinan - Luc Renambot",
    "version": "2.2.0",
    "manifest_version": 2,
    "minimum_chrome_version": "36",
    "description": "This chrome extension enables screensharing to SAGE2 walls",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "all_frames": true,
            "run_at": "document_start",
            "matches": [
                "https:\/\/*\/*index.html",
                "https:\/\/*\/*sageUI.html",
                "https:\/\/*\/*sagePointerApp.html"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Send content to SAGE2",
        "default_popup": "popup.html"
    },
    "icons": {
        "48": "SAGE2_screen_capture_48.png",
        "128": "SAGE2_screen_capture_128.png"
    },
    "permissions": [
        "desktopCapture",
        "tabs",
        "activeTab",
        "contextMenus"
    ],
    "web_accessible_resources": [
        "SAGE2_screen_capture_48.png",
        "SAGE2_screen_capture_128.png"
    ]
}