Big Screen Live Output Restore

Saves output positions to make Big Screen easier to use.

Big Screen Live Output Restore란 무엇입니까?

Big Screen Live Output Restore은(는) https://bigscreen.show에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Saves output positions to make Big Screen easier to use."입니다.

확장 프로그램 스크린샷

screenshot

Big Screen Live Output Restore 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension remembers your settings so that once you have created your Frontend and Monitor outputs there is no need to do it again. Simply click LIVE and your previous state will be restored. 
It also allows BigScreen to show a message if the browser tab has been muted.                    

확장 프로그램 기본 정보

이름 Big Screen Live Output Restore Big Screen Live Output Restore
ID poancpgegiibajhijahgbjmdcjgannek
공식 URL https://chromewebstore.google.com/detail/big-screen-live-output-re/poancpgegiibajhijahgbjmdcjgannek
설명 Saves output positions to make Big Screen easier to use.
파일 크기 10.49 KB
설치 횟수 129
현재 버전 2.2
최근 업데이트 2023-06-08
출시 날짜 2020-04-07
개발자 https://bigscreen.show
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://bigscreen.show
도움말 페이지 URL https://bigscreen.show
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "Launch Interactive",
    "manifest_version": 3,
    "name": "Big Screen Live Output Restore",
    "short_name": "BigScreen",
    "version": "2.2",
    "icons": {
        "48": "icons\/48.png",
        "96": "icons\/96.png"
    },
    "description": "Saves output positions to make Big Screen easier to use.",
    "action": {
        "default_icon": {
            "16": "icons\/16.png",
            "32": "icons\/32.png"
        },
        "default_title": "Big Screen",
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs"
    ],
    "host_permissions": [
        "*:\/\/*.bigscreen.show\/app",
        "*:\/\/*.bigscreen.show\/app?*"
    ],
    "background": {
        "service_worker": "worker.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.bigscreen.show\/app",
                "*:\/\/*.bigscreen.show\/app?*"
            ],
            "js": [
                "controlSurface.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.bigscreen.show\/app\/frontend*",
                "*:\/\/*.bigscreen.show\/app\/monitor*"
            ],
            "js": [
                "outputs.js"
            ]
        }
    ]
}