Upbringo - Meet
This extension will enhance your google meet experience with Upbringo
Vad är Upbringo - Meet?
Upbringo - Meet är en Chrome-tillägg utvecklad av https://www.upbringo.com, och dess huvudfunktion är "This extension will enhance your google meet experience with Upbringo".
Tilläggsskärmbilder
Ladda ner Upbringo - Meet-förlängningens CRX-fil
Ladda ner Upbringo - Meet-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
This extension aims to reduce existing google meet limitation. - Auto unmute ( in case someone else mutes you ). - Auto mute other participants.
Grundläggande Information om Tillägg
Namn | Upbringo - Meet |
ID | nclkpjighakdbpahncfajmokhpfellke |
Officiell webbadress | https://chromewebstore.google.com/detail/upbringo-meet/nclkpjighakdbpahncfajmokhpfellke |
Beskrivning | This extension will enhance your google meet experience with Upbringo |
Filstorlek | 154 KB |
Antal Installationer | 29 |
Aktuell Version | 0.0.2 |
Senast Uppdaterad | 2020-08-24 |
Publiceringsdatum | 2020-08-09 |
Betyg | 5.00/5 Totalt 1 Betyg |
Utvecklare | https://www.upbringo.com |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Upbringo - Meet", "version": "0.0.2", "manifest_version": 2, "description": "This extension will enhance your google meet experience with Upbringo", "homepage_url": "https:\/\/www.upbringo.com", "icons": { "16": "icons\/logo16.png", "48": "icons\/logo48.png", "128": "icons\/logo128.png" }, "default_locale": "en", "browser_action": { "default_icon": "icons\/logo48.png", "default_title": "Upbringo - Meet", "default_popup": "src\/page_action\/page_action.html" }, "commands": { "_execute_browser_action": { "suggested_key": { "default": "Ctrl+Shift+H", "mac": "MacCtrl+Shift+H" }, "description": "Opens PopUp" } }, "permissions": [ "https:\/\/meet.google.com\/*", "storage" ], "content_scripts": [ { "matches": [ "https:\/\/meet.google.com\/*" ], "css": [ "src\/inject\/inject.css" ] }, { "matches": [ "https:\/\/meet.google.com\/*" ], "js": [ "js\/jquery\/jquery.min.js", "js\/constants.js", "js\/storageAsync.js", "src\/inject\/inject.js" ] } ] } |