Instant Meet
Start Google Meet calls instantly with just a click of a button!
What is Instant Meet?
Instant Meet is a Chrome extension developed by Shahlin Ibrahim, and its main feature is "Start Google Meet calls instantly with just a click of a button!".
Extension Screenshots
Download Instant Meet Extension CRX File
Download Instant Meet extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Instant Meet |
ID | pjgfblbagmedppcpibbgdkdhbdgehmmi |
Official URL | https://chromewebstore.google.com/detail/instant-meet/pjgfblbagmedppcpibbgdkdhbdgehmmi |
Description | Start Google Meet calls instantly with just a click of a button! |
File Size | 10.62 KB |
Installation Count | 79 |
Current Version | 1.0.0 |
Last Updated | 2023-08-04 |
Publish Date | 2023-08-04 |
Developer | Shahlin Ibrahim |
[email protected] | |
Payment Type | free |
Supported Languages | 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" ] } ] } |