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
Apa itu MuteDeck Google Meet Extension?
MuteDeck Google Meet Extension adalah ekstensi Chrome yang dikembangkan oleh https://mutedeck.com, dan fitur utamanya adalah "This extension discovers and controls Google Meet calls and passes on the status to MuteDeck. Get MuteDeck from https://mutedeck.com".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi MuteDeck Google Meet Extension
Unduh file ekstensi MuteDeck Google Meet Extension dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
Control your Google Meet calls with MuteDeck. Install this extension to make Google Meet available inside MuteDeck. Get more information on: https://mutedeck.com
Informasi Dasar Ekstensi
Nama | MuteDeck Google Meet Extension |
ID | egphpgddoenbpakmaojmnjpjoflmknjk |
URL Resmi | https://chromewebstore.google.com/detail/mutedeck-google-meet-exte/egphpgddoenbpakmaojmnjpjoflmknjk |
Deskripsi | This extension discovers and controls Google Meet calls and passes on the status to MuteDeck. Get MuteDeck from https://mutedeck.com |
Ukuran File | 62.03 KB |
Jumlah Instalasi | 1,785 |
Versi Saat Ini | 1.4 |
Terakhir Diperbarui | 2023-05-03 |
Tanggal Publikasi | 2022-10-19 |
Penilaian | 2.33/5 Total 3 Penilaian |
Pengembang | https://mutedeck.com |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://mutedeck.com |
URL Halaman Bantuan | https://mutedeck.com |
URL Halaman Kebijakan Privasi | https://mutedeck.com/privacy-policy |
Bahasa yang Didukung | 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" } } |