Redback Screensharing

The Redback Screensharing extension allows you to share your screen when you're using the Redback app

Redback Screensharingคืออะไร?

Redback Screensharing เป็นส่วนขยายของ Chrome ที่พัฒนาโดย vishnu.n และคุณลักษณะหลักของมันคือ "The Redback Screensharing extension allows you to share your screen when you're using the Redback app"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Redback Screensharing

ดาวน์โหลดไฟล์ส่วนขยาย Redback Screensharing ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        The Redback Screensharing extension allows you to share your screen when you're in a meeting using the Redback web app. Offers the ability to share an entire screen or choose an application                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Redback Screensharing Redback Screensharing
ID igipgpajcndaenenjoiaohkhapianjmh
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/redback-screensharing/igipgpajcndaenenjoiaohkhapianjmh
คำอธิบาย The Redback Screensharing extension allows you to share your screen when you're using the Redback app
ขนาดไฟล์ 8.13 KB
จำนวนการติดตั้ง 113
เวอร์ชันปัจจุบัน 3.7.2
อัปเดตครั้งล่าสุด 2019-09-16
วันที่เผยแพร่ 2019-09-16
คะแนน 4.50/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา vishnu.n
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Redback Screensharing",
    "author": "EnfinTechnologies",
    "version": "3.7.2",
    "manifest_version": 2,
    "minimum_chrome_version": "34",
    "description": "The Redback Screensharing extension allows you to share your screen when you're using the Redback app",
    "homepage_url": "https:\/\/redbackconferencing.com.au\/",
    "background": {
        "scripts": [
            "background-script.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "js": [
                "content-script.js"
            ],
            "all_frames": true,
            "run_at": "document_end",
            "matches": [
                "http:\/\/localhost:4200\/*",
                "http:\/\/teleweb.rdbk.com.au\/web\/*",
                "https:\/\/teleweb.rdbk.com.au\/web\/*",
                "https:\/\/stagingteleweb.rdbk.com.au\/web\/*",
                "https:\/\/stagingwebconnect.rdbk.com.au\/web\/*",
                "https:\/\/webconnect.rdbk.com.au\/web\/*"
            ]
        }
    ],
    "icons": {
        "48": "icon.png"
    },
    "permissions": [
        "desktopCapture"
    ],
    "web_accessible_resources": [
        "icon.png"
    ]
}