Meet Chat Notifications
Meet Chat Notifications
Apa itu Meet Chat Notifications?
Meet Chat Notifications adalah ekstensi Chrome yang dikembangkan oleh ExpressTech, dan fitur utamanya adalah "Meet Chat Notifications".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Meet Chat Notifications
Unduh file ekstensi Meet Chat Notifications 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
This extension is used to show a notification for when someone uses the chat in Google Meet.
Informasi Dasar Ekstensi
Nama | Meet Chat Notifications |
ID | pjhpmbjmhmajhgjhkojockbjjapppdbe |
URL Resmi | https://chromewebstore.google.com/detail/meet-chat-notifications/pjhpmbjmhmajhgjhkojockbjjapppdbe |
Deskripsi | Meet Chat Notifications |
Ukuran File | 45.63 KB |
Jumlah Instalasi | 8,630 |
Versi Saat Ini | 2.1.0 |
Terakhir Diperbarui | 2021-06-22 |
Tanggal Publikasi | 2020-05-18 |
Penilaian | 3.60/5 Total 25 Penilaian |
Pengembang | ExpressTech |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://mycodding.com/ |
URL Halaman Bantuan | https://mycodding.com/privacy-policy/ |
Bahasa yang Didukung | en,en-US,pt-BR,pt-PT |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "version": "2.1.0", "name": "Meet Chat Notifications", "description": "Meet Chat Notifications", "author": "SmolBren", "permissions": [ "notifications" ], "icons": { "16": "icon16.png", "24": "icon24.png", "36": "icon36.png", "48": "icon48.png", "128": "icon128.png" }, "browser_action": { "default_icon": { "15": "icon16.png", "24": "icon24.png", "36": "icon36.png", "48": "icon48.png" }, "default_title": "Meet Chat Notification", "default_popup": "index.html" }, "default_locale": "en", "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/meet.google.com\/*" ], "js": [ "content.js" ] } ] } |