Confrere Screensharing
Enables screen sharing in Confrere
Cos'è Confrere Screensharing?
Confrere Screensharing è un'estensione di Chrome sviluppata da https://confrere.com, e la sua funzione principale è "Enables screen sharing in Confrere".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Confrere Screensharing
Scarica i file di estensione Confrere Screensharing 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
This extension enables screensharing for Confrere-based products. The extension may be installed to *.confrere.com. Informazioni di Base sull'Estensione
| Nome | |
| ID | okifmkhblklokdfkgaejkpmleiajepml |
| URL Ufficiale | https://chromewebstore.google.com/detail/confrere-screensharing/okifmkhblklokdfkgaejkpmleiajepml |
| Descrizione | Enables screen sharing in Confrere |
| Dimensione del File | 47 KB |
| Conteggio Installazioni | 95 |
| Versione Corrente | 1.1.1 |
| Ultimo Aggiornamento | 2019-01-11 |
| Data di Pubblicazione | 2019-01-11 |
| Valutazione | 5.00/5 Totale 1 Valutazioni |
| Sviluppatore | https://confrere.com |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://confrere.com |
| Lingue Supportate | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Confrere Screensharing",
"description": "Enables screen sharing in Confrere",
"version": "1.1.1",
"manifest_version": 2,
"minimum_chrome_version": "34",
"icons": {
"16": "icon-16x16.png",
"32": "icon-32x32.png",
"128": "icon-128x128.png",
"192": "icon-192x192.png",
"512": "icon-512x512.png"
},
"permissions": [
"desktopCapture",
"https:\/\/*.confrere.com\/*"
],
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"js": [
"content.js"
],
"matches": [
"https:\/\/*.confrere.com\/*",
"http:\/\/localhost:3000\/*"
]
}
],
"externally_connectable": {
"matches": [
"https:\/\/*.confrere.com\/*",
"http:\/\/localhost:3000\/*"
]
}
} | |