Multiparty-Meeting Screen Sharing

This extension allows you to share your screen in the multiparty web-meeting you are in.

What is Multiparty-Meeting Screen Sharing?

Multiparty-Meeting Screen Sharing is a Chrome extension developed by https://akademia.no, and its main feature is "This extension allows you to share your screen in the multiparty web-meeting you are in.".

Extension Screenshots

screenshot

Download Multiparty-Meeting Screen Sharing Extension CRX File

Download Multiparty-Meeting Screen Sharing extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Open source extension for sharing your screen in web meetings.                    

Extension Basic Information

Name Multiparty-Meeting Screen Sharing Multiparty-Meeting Screen Sharing
ID fckajcjdaabdgnbdcmhhebdglogjfodi
Official URL https://chromewebstore.google.com/detail/multiparty-meeting-screen/fckajcjdaabdgnbdcmhhebdglogjfodi
Description This extension allows you to share your screen in the multiparty web-meeting you are in.
File Size 11.19 KB
Installation Count 95
Current Version 0.1.1
Last Updated 2018-09-18
Publish Date 2018-09-18
Developer https://akademia.no
Payment Type free
Extension Website https://github.com/havfo/multiparty-meeting-extension
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Multiparty-Meeting Screen Sharing",
    "short_name": "Screen Sharing",
    "version": "0.1.1",
    "manifest_version": 2,
    "description": "This extension allows you to share your screen in the multiparty web-meeting you are in.",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "desktopCapture",
        "tabs",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "all_frames": true,
            "run_at": "document_end"
        }
    ]
}