VCR Screen-Share
Record your screen with audio.
Cos'è VCR Screen-Share?
VCR Screen-Share è un'estensione di Chrome sviluppata da https://www.vconfroom.com, e la sua funzione principale è "Record your screen with audio.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione VCR Screen-Share
Scarica i file di estensione VCR Screen-Share in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Capture full-screen or specific screen.
This is screen sharing and screen recording with audio extension.can be used in https://www.vconfroom.com Application only. Informazioni di Base sull'Estensione
| Nome | |
| ID | gmfakinflkflhggbhibfclfidnbcflnd |
| URL Ufficiale | https://chromewebstore.google.com/detail/vcr-screen-share/gmfakinflkflhggbhibfclfidnbcflnd |
| Descrizione | Record your screen with audio. |
| Dimensione del File | 15.58 KB |
| Conteggio Installazioni | 404 |
| Versione Corrente | 4.7.1 |
| Ultimo Aggiornamento | 2017-07-26 |
| Data di Pubblicazione | 2017-07-26 |
| Sviluppatore | https://www.vconfroom.com |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://www.vconfroom.com |
| URL della Pagina di Aiuto | https://www.vconfroom.com |
| Lingue Supportate | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "VCR Screen-Share",
"author": "Pooja Shirsath",
"version": "4.7.1",
"manifest_version": 2,
"minimum_chrome_version": "34",
"description": "Record your screen with audio.",
"homepage_url": "https:\/\/www.vconfroom.com\/",
"background": {
"scripts": [
"background-script.js"
],
"persistent": false
},
"content_scripts": [
{
"js": [
"content-script.js"
],
"all_frames": true,
"run_at": "document_end",
"matches": [
"https:\/\/www.vconfroom.com\/*"
]
}
],
"icons": {
"48": "icon.png"
},
"permissions": [
"desktopCapture"
],
"web_accessible_resources": [
"icon.png"
]
} | |