Google Meet Default Account
Set the default account for google meet for users who are signed in to multiple Google accounts. Icon from Font Awesome.
什麼是Google Meet Default Account?
Google Meet Default Account是由sitati.kituyi開發的Chrome擴展程式,該擴展的主要功能是“Set the default account for google meet for users who are signed in to multiple Google accounts. Icon from Font Awesome.”。
擴展截圖
下載Google Meet Default Account擴展crx文件
下載Google Meet Default Account擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
When you work with multiple Google accounts, one small annoyance is having to switch to the correct account every time you open a Google Meet URL. This extension lets you pick a default Google account specifically for Google Meet, whether or not that is the primary Google account you are logged in to. That allows you to have your personal account as the default account in your browser, but always open Google Meet links with your work account. Using 'force mode', you can choose whether the extension should always override the set authUser. This is useful if you never use Google Meet in your personal account Using the 'hide AuthUser after redirect' option, you can set the extension up to remove your authUser parameter once the meeting is loaded with your correct user. This is useful for copying & pasting the link to invite others to join, without including your authUser parameter, which won't always be the same one for others. Free and open source: https://github.com/lesiki/google-meet-default-account
擴展基本資訊
名稱 | Google Meet Default Account |
ID | cniopfhdifdmfkdjdjhkdkdcikomdjhb |
官方網址 | https://chromewebstore.google.com/detail/google-meet-default-accou/cniopfhdifdmfkdjdjhkdkdcikomdjhb |
簡介 | Set the default account for google meet for users who are signed in to multiple Google accounts. Icon from Font Awesome. |
檔案大小 | 46.35 KB |
安裝次數 | 1,788 |
目前版本 | 1.2 |
更新時間 | 2021-06-21 |
上架時間 | 2020-05-24 |
評分 | 4.29/5 共 28 次評分 |
開發者 | sitati.kituyi |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/lesiki/google-meet-default-account |
說明頁面URL | https://github.com/lesiki/google-meet-default-account/issues |
支援的語言 | en,ru |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Google Meet Default Account", "version": "1.2", "manifest_version": 2, "description": "Set the default account for google meet for users who are signed in to multiple Google accounts. Icon from Font Awesome.", "permissions": [ "storage", "webRequest", "webRequestBlocking", "https:\/\/meet.google.com\/*" ], "icons": { "16": "headset_16.png", "48": "headset_48.png", "128": "headset_128.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/meet.google.com\/*" ], "js": [ "contentScript.js" ] } ], "default_locale": "en", "options_ui": { "page": "options.html", "open_in_tab": false } } |