Tesse - Share Screen
This extension help you share your screen
Wat is Tesse - Share Screen?
Tesse - Share Screen is een Chrome-extensie ontwikkeld door https://tesse.io, en de belangrijkste functie is "This extension help you share your screen".
Extensie Screenshots
Download het CRX-bestand van de extensie Tesse - Share Screen
Download Tesse - Share Screen-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
This extension helps you to share your screen in a video call to show presentations, photos, and documents.
Tesse.io allows you to start a video call, without the need to download or install anything.
This extension allows you to share your screen with other participants in tesse.io call/chat session, to improve your online meeting efficiency.
You can select the window/apllication you want to share.
This extension was built based on open source: https://github.com/muaz-khan Basisinformatie over de Extensie
| Naam | |
| ID | cgplojjghbkfimkgggajefldkpmaklll |
| Officiële URL | https://chromewebstore.google.com/detail/tesse-share-screen/cgplojjghbkfimkgggajefldkpmaklll |
| Beschrijving | This extension help you share your screen |
| Bestandsgrootte | 8.71 KB |
| Aantal Installaties | 33 |
| Huidige Versie | 1.2 |
| Laatst Bijgewerkt | 2018-10-11 |
| Publicatiedatum | 2018-10-11 |
| Beoordeling | 5.00/5 Totaal 4 Beoordelingen |
| Ontwikkelaar | https://tesse.io |
| [email protected] | |
| Betalingswijze | free |
| Help Pagina-URL | https://tesse.io/tessbot |
| Ondersteunde Talen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Tesse - Share Screen",
"author": "Tesse, Inc.",
"version": "1.2",
"manifest_version": 2,
"minimum_chrome_version": "34",
"description": "This extension help you share your screen",
"homepage_url": "https:\/\/tesse.io",
"background": {
"scripts": [
"background-script.js"
],
"persistent": false
},
"content_scripts": [
{
"js": [
"content-script.js"
],
"all_frames": true,
"run_at": "document_end",
"matches": [
"https:\/\/tesse.io\/*"
]
}
],
"icons": {
"48": "icon.png"
},
"permissions": [
"desktopCapture"
],
"web_accessible_resources": [
"icon.png"
],
"browser_action": {
"default_icon": "icon.png"
}
} | |