Screen Sharing
Capture full-screen or specific application's screen.
Qu'est-ce que Screen Sharing ?
Screen Sharing est une extension Chrome développée par https://engducate.com, et sa fonction principale est "Capture full-screen or specific application's screen.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Screen Sharing
Téléchargez les fichiers d'extension Screen Sharing au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
To enable screen sharing on the following websites: - https://webrtc.ziotes.com/ - https://localhost:8443/ - https://engducate.com/ - https://ko.engducate.com/
Informations de Base sur l'Extension
Nom | Screen Sharing |
ID | aafipaghlllcbognnpmdplmpielpaepp |
URL Officiel | https://chromewebstore.google.com/detail/screen-sharing/aafipaghlllcbognnpmdplmpielpaepp |
Description | Capture full-screen or specific application's screen. |
Taille du Fichier | 5.52 KB |
Nombre d'Installations | 124 |
Version Actuelle | 1.4 |
Dernière Mise à Jour | 2018-11-28 |
Date de Publication | 2018-11-27 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | https://engducate.com |
Type de Paiement | free |
Site Web de l'Extension | https://engducate.com/ |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Screen Sharing", "author": "Emmanuel Joseph Perion", "version": "1.4", "manifest_version": 2, "minimum_chrome_version": "34", "description": "Capture full-screen or specific application's screen.", "homepage_url": "https:\/\/webrtc.ziotes.com\/", "background": { "scripts": [ "background-script.js" ], "persistent": false }, "content_scripts": [ { "js": [ "content-script.js" ], "all_frames": true, "run_at": "document_end", "matches": [ "https:\/\/webrtc.ziotes.com\/*", "https:\/\/localhost\/*", "https:\/\/engducate.com\/*", "https:\/\/ko.engducate.com\/*" ] } ], "icons": { "48": "icon.png" }, "permissions": [ "desktopCapture" ], "web_accessible_resources": [ "icon.png" ] } |