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

ما هو MuteDeck Google Meet Extension؟

MuteDeck Google Meet Extension هو إضافة Chrome تم تطويرها بواسطة https://mutedeck.com، والميزة الرئيسية لها هي "This extension discovers and controls Google Meet calls and passes on the status to MuteDeck. Get MuteDeck from https://mutedeck.com".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة MuteDeck Google Meet Extension

قم بتنزيل ملفات الامتداد MuteDeck Google Meet Extension بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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

معلومات أساسية عن التمديد

الاسم MuteDeck Google Meet Extension MuteDeck Google Meet Extension
ID egphpgddoenbpakmaojmnjpjoflmknjk
عنوان URL الرسمي https://chromewebstore.google.com/detail/mutedeck-google-meet-exte/egphpgddoenbpakmaojmnjpjoflmknjk
الوصف This extension discovers and controls Google Meet calls and passes on the status to MuteDeck. Get MuteDeck from https://mutedeck.com
حجم الملف 62.03 KB
عدد التثبيتات 1,785
النسخة الحالية 1.4
آخر تحديث 2023-05-03
تاريخ النشر 2022-10-19
تقييم 2.33/5 مجموع تقييمات 3
المطور https://mutedeck.com
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://mutedeck.com
عنوان صفحة المساعدة https://mutedeck.com
عنوان صفحة سياسة الخصوصية https://mutedeck.com/privacy-policy
اللغات المدعومة 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"
    }
}