Google Meet Meat

A collection of features to put a little extra Meat into your Google Meets.

Google Meet Meat क्या है?

Google Meet Meat Google Meet Meat द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A collection of features to put a little extra Meat into your Google Meets."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Google Meet Meat एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Version 0.2.1:
-Bug Fixes

Google Meet Meat is a collection of features and enhancements aimed at Google Meet.

Features:
- Clicking extension icon prompts user to create new Meet.
- Enable captions automatically upon joining the Meet.
- Disable video automatically upon loading the Meet page.
- Disable audio automatically upon loading the Meet page.
- Automatically join the Meet.
- Automatically open the chat once the Meet has joined.
- Quick emoji bar, allowing the user to insert emojis into their chat.
- Option to mirror all video inside the Meet.
- Keyboard shortcut (CTRL + key) to leave the Meet.
-Push to Talk (using the Shift key)

If you have feedback (issues, feature requests), please email [email protected].

This extension is provided free of charge, however we do use an addon called Arc in order to monetize our content. Arc loads content from people's devices running the addon instead of from slower servers, creating a faster Internet. People running the extension contribute a little bandwidth to the Arc network, allowing us to earn money and continue providing and developing this extension for free. Arc does not impact your user experience, and you can opt out by going to arc.io/optOut.                    

एक्सटेंशन की मूल जानकारी

नाम Google Meet Meat Google Meet Meat
ID bgdcnhpilfaooloolmedfjbndcmobged
आधिकारिक URL https://chromewebstore.google.com/detail/google-meet-meat/bgdcnhpilfaooloolmedfjbndcmobged
विवरण A collection of features to put a little extra Meat into your Google Meets.
फ़ाइल का आकार 40.05 KB
स्थापना संख्या 1,194
वर्तमान संस्करण 0.2.1
अंतिम अपडेट 2023-03-27
प्रकाशन तिथि 2020-09-08
रेटिंग 5.00/5 कुल 2 रेटिंग्स
डेवलपर Google Meet Meat
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Google Meet Meat",
    "description": "A collection of features to put a little extra Meat into your Google Meets.",
    "version": "0.2.1",
    "icons": {
        "16": "icon.png"
    },
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "*:\/\/meet.google.com\/*"
            ],
            "js": [
                "jquery-3.5.1.min.js",
                "main.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "navigation.html",
                "header.html"
            ],
            "matches": [
                "*:\/\/meet.google.com\/*"
            ],
            "extension_ids": []
        }
    ],
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "popup.html"
    }
}