Screen Sharing
Capture full-screen or specific application's screen.
ما هو Screen Sharing؟
Screen Sharing هو إضافة Chrome تم تطويرها بواسطة https://engducate.com، والميزة الرئيسية لها هي "Capture full-screen or specific application's screen.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Screen Sharing
قم بتنزيل ملفات الامتداد Screen Sharing بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
To enable screen sharing on the following websites: - https://webrtc.ziotes.com/ - https://localhost:8443/ - https://engducate.com/ - https://ko.engducate.com/
معلومات أساسية عن التمديد
الاسم | Screen Sharing |
ID | aafipaghlllcbognnpmdplmpielpaepp |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/screen-sharing/aafipaghlllcbognnpmdplmpielpaepp |
الوصف | Capture full-screen or specific application's screen. |
حجم الملف | 5.52 KB |
عدد التثبيتات | 124 |
النسخة الحالية | 1.4 |
آخر تحديث | 2018-11-28 |
تاريخ النشر | 2018-11-27 |
تقييم | 5.00/5 مجموع تقييمات 1 |
المطور | https://engducate.com |
نوع الدفع | free |
موقع الإضافة | https://engducate.com/ |
اللغات المدعومة | 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" ] } |