SAGE2 Screen Capture

This chrome extension enables screensharing to SAGE2 walls

ما هو SAGE2 Screen Capture؟

SAGE2 Screen Capture هو إضافة Chrome تم تطويرها بواسطة https://sage2.sagecommons.org، والميزة الرئيسية لها هي "This chrome extension enables screensharing to SAGE2 walls".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة SAGE2 Screen Capture

قم بتنزيل ملفات الامتداد SAGE2 Screen Capture بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        This chrome extension is developed to be used in collaborative environments. It enables desktop sharing with large displays.                    

معلومات أساسية عن التمديد

الاسم SAGE2 Screen Capture SAGE2 Screen Capture
ID mbkfcmpjbkmmdcfocaclghbobhnjfpkk
عنوان URL الرسمي https://chromewebstore.google.com/detail/sage2-screen-capture/mbkfcmpjbkmmdcfocaclghbobhnjfpkk
الوصف This chrome extension enables screensharing to SAGE2 walls
حجم الملف 25.17 KB
عدد التثبيتات 1,110
النسخة الحالية 2.2.0
آخر تحديث 2021-09-06
تاريخ النشر 2018-10-29
تقييم 4.43/5 مجموع تقييمات 7
المطور https://sage2.sagecommons.org
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة http://sage2.sagecommons.org/
عنوان صفحة المساعدة https://groups.google.com/forum/#!forum/sage2
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SAGE2 Screen Capture",
    "author": "Thomas Marrinan - Luc Renambot",
    "version": "2.2.0",
    "manifest_version": 2,
    "minimum_chrome_version": "36",
    "description": "This chrome extension enables screensharing to SAGE2 walls",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "all_frames": true,
            "run_at": "document_start",
            "matches": [
                "https:\/\/*\/*index.html",
                "https:\/\/*\/*sageUI.html",
                "https:\/\/*\/*sagePointerApp.html"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Send content to SAGE2",
        "default_popup": "popup.html"
    },
    "icons": {
        "48": "SAGE2_screen_capture_48.png",
        "128": "SAGE2_screen_capture_128.png"
    },
    "permissions": [
        "desktopCapture",
        "tabs",
        "activeTab",
        "contextMenus"
    ],
    "web_accessible_resources": [
        "SAGE2_screen_capture_48.png",
        "SAGE2_screen_capture_128.png"
    ]
}