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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Saves output positions to make Big Screen easier to use."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Big Screen Live Output Restore एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
ईमेल | [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" ] } ] } |