Big Screen Live Output Restore

Saves output positions to make Big Screen easier to use.

Big Screen Live Output Restore là gì?

Big Screen Live Output Restore là một tiện ích mở rộng Chrome được phát triển bởi https://bigscreen.show, và tính năng chính của nó là "Saves output positions to make Big Screen easier to use.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Big Screen Live Output Restore

Tải xuống các tệp mở rộng Big Screen Live Output Restore dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Big Screen Live Output Restore Big Screen Live Output Restore
ID poancpgegiibajhijahgbjmdcjgannek
URL Chính Thức https://chromewebstore.google.com/detail/big-screen-live-output-re/poancpgegiibajhijahgbjmdcjgannek
Mô tả Saves output positions to make Big Screen easier to use.
Kích Thước Tệp 10.49 KB
Số Lần Cài Đặt 129
Phiên Bản Hiện Tại 2.2
Cập Nhật Lần Cuối 2023-06-08
Ngày Phát Hành 2020-04-07
Nhà Phát Triển https://bigscreen.show
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://bigscreen.show
URL Trang Trợ Giúp https://bigscreen.show
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}