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.”。
擴展截圖
下載Big Screen Live Output Restore擴展crx文件
下載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 |
ID | poancpgegiibajhijahgbjmdcjgannek |
官方網址 | 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" ] } ] } |