Redback Screensharing
The Redback Screensharing extension allows you to share your screen when you're using the Redback app
Hvad er Redback Screensharing?
Redback Screensharing er en Chrome-udvidelse udviklet af vishnu.n, og dens hovedfunktion er "The Redback Screensharing extension allows you to share your screen when you're using the Redback app".
Udvidelsesskærmbilleder
Download Redback Screensharing-udvidelses-CRX-fil
Download Redback Screensharing-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
The Redback Screensharing extension allows you to share your screen when you're in a meeting using the Redback web app. Offers the ability to share an entire screen or choose an application
Grundlæggende oplysninger om udvidelsen
Navn | |
ID | igipgpajcndaenenjoiaohkhapianjmh |
Officiel URL | https://chrome.google.com/webstore/detail/redback-screensharing/igipgpajcndaenenjoiaohkhapianjmh |
Beskrivelse | The Redback Screensharing extension allows you to share your screen when you're using the Redback app |
Filstørrelse | 8.13 KB |
Antal Installationer | 113 |
Nuværende Version | 3.7.2 |
Senest Opdateret | 2019-09-16 |
Udgivelsesdato | 2019-09-16 |
Bedømmelse | 4.50/5 Samlet 2 Bedømmelser |
Udvikler | vishnu.n |
Betalingsmetode | free |
Understøttede Sprog | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Redback Screensharing", "author": "EnfinTechnologies", "version": "3.7.2", "manifest_version": 2, "minimum_chrome_version": "34", "description": "The Redback Screensharing extension allows you to share your screen when you're using the Redback app", "homepage_url": "https:\/\/redbackconferencing.com.au\/", "background": { "scripts": [ "background-script.js" ], "persistent": false }, "content_scripts": [ { "js": [ "content-script.js" ], "all_frames": true, "run_at": "document_end", "matches": [ "http:\/\/localhost:4200\/*", "http:\/\/teleweb.rdbk.com.au\/web\/*", "https:\/\/teleweb.rdbk.com.au\/web\/*", "https:\/\/stagingteleweb.rdbk.com.au\/web\/*", "https:\/\/stagingwebconnect.rdbk.com.au\/web\/*", "https:\/\/webconnect.rdbk.com.au\/web\/*" ] } ], "icons": { "48": "icon.png" }, "permissions": [ "desktopCapture" ], "web_accessible_resources": [ "icon.png" ] } |