VOXO Meet

A simple extension that allows you to screen share and schedule meetings

What is VOXO Meet?

VOXO Meet is a Chrome extension developed by https://voxo.co, and its main feature is "A simple extension that allows you to screen share and schedule meetings".

Extension Screenshots

screenshot

Download VOXO Meet Extension CRX File

Download VOXO Meet 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

                                            

Extension Basic Information

Name VOXO Meet VOXO Meet
ID enbobpnfcaohmdnjcpdjphkemkaemlil
Official URL https://chromewebstore.google.com/detail/voxo-meet/enbobpnfcaohmdnjcpdjphkemkaemlil
Description A simple extension that allows you to screen share and schedule meetings
File Size 134 KB
Installation Count 42
Current Version 0.1.13
Last Updated 2018-10-14
Publish Date 2018-10-13
Developer https://voxo.co
Email [email protected]
Payment Type free
Extension Website https://www.voxo.co
Help Page URL http://support.voxo.co
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "VOXO Meet",
    "description": "A simple extension that allows you to screen share and schedule meetings",
    "version": "0.1.13",
    "minimum_chrome_version": "34",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "desktopCapture",
        "https:\/\/calendar.google.com\/*"
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/meet.voxo.co\/*",
            "*:\/\/voxo.co\/*"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/calendar.google.com\/calendar\/*",
                "https:\/\/outlook.live.com\/owa\/*"
            ],
            "js": [
                "jquery.js",
                "RandomUtil.js",
                "RoomnameGenerator.js",
                "meet-calendar.js"
            ],
            "css": [
                "\/css\/all.css"
            ],
            "all_frames": false,
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "icon48.png",
        "meet-logo-white-48x48.png",
        "meet-logo-blue.svg",
        "meet-logo-grey.svg"
    ],
    "browser_action": {
        "default_title": "Create VOXO Meetings",
        "default_popup": "popup.html"
    }
}