GM Assistant
GM Assistant
Co to jest GM Assistant?
GM Assistant to rozszerzenie Chrome opracowane przez Ayudh Kumar Gupta, a jego główną funkcją jest „GM Assistant”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia GM Assistant
Pobierz pliki rozszerzeń GM Assistant w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | gnfmffmjjhjhidgghikjiajfbcfhdfmf |
Oficjalny URL | https://chromewebstore.google.com/detail/gm-assistant/gnfmffmjjhjhidgghikjiajfbcfhdfmf |
Opis | GM Assistant |
Rozmiar pliku | 49.11 KB |
Liczba instalacji | 51 |
Aktualna Wersja | 1.1 |
Ostatnia Aktualizacja | 2021-06-18 |
Data Publikacji | 2021-03-29 |
Ocena | 5.00/5 Łącznie 10 Oceny |
Deweloper | Ayudh Kumar Gupta |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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 } } |