Big Screen Live Output Restore

Saves output positions to make Big Screen easier to use.

O que é Big Screen Live Output Restore?

Big Screen Live Output Restore é uma extensão do Chrome desenvolvida por https://bigscreen.show, e sua principal característica é "Saves output positions to make Big Screen easier to use.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Big Screen Live Output Restore

Baixe arquivos de extensão Big Screen Live Output Restore no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Big Screen Live Output Restore Big Screen Live Output Restore
ID poancpgegiibajhijahgbjmdcjgannek
URL Oficial https://chromewebstore.google.com/detail/big-screen-live-output-re/poancpgegiibajhijahgbjmdcjgannek
Descrição Saves output positions to make Big Screen easier to use.
Tamanho do Arquivo 10.49 KB
Contagem de Instalações 129
Versão Atual 2.2
Última Atualização 2023-06-08
Data de Publicação 2020-04-07
Desenvolvedor https://bigscreen.show
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://bigscreen.show
URL da Página de Ajuda https://bigscreen.show
Idiomas Suportados 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"
            ]
        }
    ]
}