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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://bigscreen.show และคุณลักษณะหลักของมันคือ "Saves output positions to make Big Screen easier to use."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Big Screen Live Output Restore

ดาวน์โหลดไฟล์ส่วนขยาย Big Screen Live Output Restore ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
            ]
        }
    ]
}