Big Screen Live Output Restore
Saves output positions to make Big Screen easier to use.
Co je Big Screen Live Output Restore?
Big Screen Live Output Restore je rozšíření Chrome vyvinuté https://bigscreen.show, a jeho hlavní funkcí je „Saves output positions to make Big Screen easier to use.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Big Screen Live Output Restore
Stáhněte si soubory rozšíření Big Screen Live Output Restore ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | Big Screen Live Output Restore |
ID | poancpgegiibajhijahgbjmdcjgannek |
Oficiální URL | https://chromewebstore.google.com/detail/big-screen-live-output-re/poancpgegiibajhijahgbjmdcjgannek |
Popis | Saves output positions to make Big Screen easier to use. |
Velikost souboru | 10.49 KB |
Počet instalací | 129 |
Aktuální Verze | 2.2 |
Poslední Aktualizace | 2023-06-08 |
Datum Vydání | 2020-04-07 |
Vývojář | https://bigscreen.show |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://bigscreen.show |
URL Stránky Nápovědy | https://bigscreen.show |
Podporované Jazyky | 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" ] } ] } |