MuteDeck Google Meet Extension

This extension discovers and controls Google Meet calls and passes on the status to MuteDeck. Get MuteDeck from https://mutedeck.com

What is MuteDeck Google Meet Extension?

MuteDeck Google Meet Extension is a Chrome extension developed by https://mutedeck.com, and its main feature is "This extension discovers and controls Google Meet calls and passes on the status to MuteDeck. Get MuteDeck from https://mutedeck.com".

Extension Screenshots

screenshot

Download MuteDeck Google Meet Extension Extension CRX File

Download MuteDeck Google Meet Extension 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

                        Control your Google Meet calls with MuteDeck. Install this extension to make Google Meet available inside MuteDeck. Get more information on: https://mutedeck.com                    

Extension Basic Information

Name MuteDeck Google Meet Extension MuteDeck Google Meet Extension
ID egphpgddoenbpakmaojmnjpjoflmknjk
Official URL https://chromewebstore.google.com/detail/mutedeck-google-meet-exte/egphpgddoenbpakmaojmnjpjoflmknjk
Description This extension discovers and controls Google Meet calls and passes on the status to MuteDeck. Get MuteDeck from https://mutedeck.com
File Size 62.03 KB
Installation Count 1,785
Current Version 1.4
Last Updated 2023-05-03
Publish Date 2022-10-19
Rating 2.33/5 Total 3 Ratings
Developer https://mutedeck.com
Email [email protected]
Payment Type free
Extension Website https://mutedeck.com
Help Page URL https://mutedeck.com
Privacy Policy Page URL https://mutedeck.com/privacy-policy
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "MuteDeck Google Meet Extension",
    "version": "1.4",
    "description": "This extension discovers and controls Google Meet calls and passes on the status to MuteDeck. Get MuteDeck from https:\/\/mutedeck.com",
    "manifest_version": 3,
    "permissions": [
        "storage",
        "activeTab"
    ],
    "host_permissions": [
        "https:\/\/meet.google.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/meet.google.com\/*"
            ],
            "js": [
                "contentScript.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "action": {
        "default_icon": {
            "16": "images\/logo-16.png",
            "32": "images\/logo-32.png",
            "48": "images\/logo-48.png",
            "128": "images\/logo-128.png"
        },
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "images\/logo-16.png",
        "32": "images\/logo-32.png",
        "48": "images\/logo-48.png",
        "128": "images\/logo-128.png"
    }
}