Doxy.me Screen Sharing
Extension that captures content of your screen.
Was ist Doxy.me Screen Sharing?
Doxy.me Screen Sharing ist eine Chrome-Erweiterung, die von https://doxy.me entwickelt wurde, und ihr Hauptmerkmal ist "Extension that captures content of your screen.".
Erweiterungsscreenshots
Doxy.me Screen Sharing-Erweiterungs-CRX-Datei herunterladen
Laden Sie Doxy.me Screen Sharing-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
A Google Chrome extension that allows a Doxy.me user to share their screen with another person in a Doxy.me meeting. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | hpohjmcciikpccgjfbjopmjcieefnaem |
| Offizielle URL | https://chromewebstore.google.com/detail/doxyme-screen-sharing/hpohjmcciikpccgjfbjopmjcieefnaem |
| Beschreibung | Extension that captures content of your screen. |
| Dateigröße | 17.64 KB |
| Installationsanzahl | 5,966 |
| Aktuelle Version | 1.0 |
| Letztes Update | 2017-10-23 |
| Veröffentlichungsdatum | 2017-10-23 |
| Bewertung | 2.67/5 Insgesamt 3 Bewertungen |
| Entwickler | https://doxy.me |
| Zahlungsart | free |
| Erweiterungswebsite | https://doxy.me |
| Hilfeseite URL | https://help.doxy.me/video-tutorials/features/screenshare |
| Unterstützte Sprachen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Doxy.me Screen Sharing",
"author": "Doxy.me LLC",
"version": "1.0",
"manifest_version": 2,
"minimum_chrome_version": "34",
"description": "Extension that captures content of your screen.",
"homepage_url": "https:\/\/doxy.me",
"background": {
"scripts": [
"background-script.js"
],
"persistent": false
},
"content_scripts": [
{
"js": [
"content-script.js"
],
"all_frames": true,
"matches": [
"https:\/\/*.doxy.me\/*",
"https:\/\/doxy.me\/*",
"https:\/\/doxi.me\/*",
"https:\/\/*.doxi.me\/*"
]
}
],
"icons": {
"16": "logo16.png",
"48": "logo48.png",
"128": "logo128.png"
},
"permissions": [
"desktopCapture"
],
"web_accessible_resources": [
"icon.png"
]
} | |