Linkello Screen Sharing
This extension allows you to share your screen
Vad är Linkello Screen Sharing?
Linkello Screen Sharing är en Chrome-tillägg utvecklad av https://linkello.com, och dess huvudfunktion är "This extension allows you to share your screen".
Tilläggsskärmbilder
Ladda ner Linkello Screen Sharing-förlängningens CRX-fil
Ladda ner Linkello Screen Sharing-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Install this plugin to enable the screen sharing feature on linkello.com. Don't forget to reload the conference page after having installed this add-on ! Grundläggande Information om Tillägg
| Namn | |
| ID | eeopgbooadfjifpfalhifnogjblphecd |
| Officiell webbadress | https://chromewebstore.google.com/detail/linkello-screen-sharing/eeopgbooadfjifpfalhifnogjblphecd |
| Beskrivning | This extension allows you to share your screen |
| Filstorlek | 12.11 KB |
| Antal Installationer | 243 |
| Aktuell Version | 1.0 |
| Senast Uppdaterad | 2019-01-09 |
| Publiceringsdatum | 2019-01-09 |
| Betyg | 5.00/5 Totalt 1 Betyg |
| Utvecklare | https://linkello.com |
| E-post | [email protected] |
| Betalningssätt | free |
| Stödda Språk | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Linkello Screen Sharing",
"description": "This extension allows you to share your screen",
"version": "1.0",
"manifest_version": 2,
"minimum_chrome_version": "34",
"icons": {
"128": "logo_icon_128.png"
},
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"js": [
"bridge.js"
],
"matches": [
"*:\/\/*.linkello.com\/*"
]
}
],
"permissions": [
"desktopCapture"
]
} | |