GM Assistant
GM Assistant
What is GM Assistant?
GM Assistant is a Chrome extension developed by Ayudh Kumar Gupta, and its main feature is "GM Assistant".
Extension Screenshots
Download GM Assistant Extension CRX File
Download GM Assistant 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
Use this chrome extension to join all google meet calls via a default user. One can also Turn off their Mic and Camera by default using this extension.
Extension Basic Information
Name | GM Assistant |
ID | gnfmffmjjhjhidgghikjiajfbcfhdfmf |
Official URL | https://chromewebstore.google.com/detail/gm-assistant/gnfmffmjjhjhidgghikjiajfbcfhdfmf |
Description | GM Assistant |
File Size | 49.11 KB |
Installation Count | 51 |
Current Version | 1.1 |
Last Updated | 2021-06-18 |
Publish Date | 2021-03-29 |
Rating | 5.00/5 Total 10 Ratings |
Developer | Ayudh Kumar Gupta |
[email protected] | |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "GM Assistant", "version": "1.1", "description": "GM Assistant", "manifest_version": 2, "browser_action": { "default_popup": "popup.html" }, "permissions": [ "activeTab", "storage", "tabs", "http:\/\/*\/", "https:\/\/*\/" ], "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "constants.js", "storageUtil.js", "content.js" ] } ], "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "scripts": [ "background.js" ], "persistent": false } } |