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 |
公式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 |
Eメール | [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" ] } ] } |