Instant Meet
Start Google Meet calls instantly with just a click of a button!
Was ist Instant Meet?
Instant Meet ist eine Chrome-Erweiterung, die von Shahlin Ibrahim entwickelt wurde, und ihr Hauptmerkmal ist "Start Google Meet calls instantly with just a click of a button!".
Erweiterungsscreenshots
Instant Meet-Erweiterungs-CRX-Datei herunterladen
Laden Sie Instant Meet-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Get on a NEW Google Meet call with just a click of button; To make it even more convenient, the link is automatically copied so you can pass it on to others. For the lazy ones, you save a whole 7-10 seconds with this easy access 😂
Note: For the automatic copy to clipboard to work, you will need to allow access the first time it asks you Grundlegende Informationen zur Erweiterung
| Name | |
| ID | pjgfblbagmedppcpibbgdkdhbdgehmmi |
| Offizielle URL | https://chromewebstore.google.com/detail/instant-meet/pjgfblbagmedppcpibbgdkdhbdgehmmi |
| Beschreibung | Start Google Meet calls instantly with just a click of a button! |
| Dateigröße | 10.62 KB |
| Installationsanzahl | 79 |
| Aktuelle Version | 1.0.0 |
| Letztes Update | 2023-08-04 |
| Veröffentlichungsdatum | 2023-08-04 |
| Entwickler | Shahlin Ibrahim |
| [email protected] | |
| Zahlungsart | free |
| Unterstützte Sprachen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Instant Meet",
"description": "Start Google Meet calls instantly with just a click of a button!",
"version": "1.0.0",
"manifest_version": 3,
"author": "Shahlin Ibrahim",
"icons": {
"16": "images\/logo\/logo-16.png",
"32": "images\/logo\/logo-32.png",
"48": "images\/logo\/logo-48.png",
"128": "images\/logo\/logo-128.png"
},
"permissions": [],
"action": [],
"host_permissions": [
"https:\/\/meet.google.com\/*"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/meet.google.com\/*"
],
"js": [
"content-script.js"
]
}
]
} | |