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."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Google Meet Default Account 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 Google Meet Default Account
ID cniopfhdifdmfkdjdjhkdkdcikomdjhb
공식 URL 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
    }
}