Google Account Chooser

Automatically Choose Google Account.

Google Account Chooser란 무엇입니까?

Google Account Chooser은(는) Sverrir Á. Berg에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatically Choose Google Account."입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        If you use Google Account Authentication in applications on a day to day basis this chrome extension is for you.

After selecting to log in to a 3rd party site using a Google Account this extension will remember which account you used so next time you log in you just have to select login and this extension will select the account automatically.

This extension needs to access the Account Selection page and stores the selected account/email per domain.  If you use Google Account sync it will synchronise this between browsers. 

It does not store passwords or any other sensitive authentication data and does not store data from the pages you visit.

Version 1.1 update: Now works with the new Google OAuth login flow.
Version 1.2 update: Fix alternative login flow.
Version 1.3 update: Fix auto login, and automatically log in if using a single account.                    

확장 프로그램 기본 정보

이름 Google Account Chooser Google Account Chooser
ID fldnfjcbkcklcbcbjojlinecjpbmiapi
공식 URL https://chromewebstore.google.com/detail/google-account-chooser/fldnfjcbkcklcbcbjojlinecjpbmiapi
설명 Automatically Choose Google Account.
파일 크기 19.14 KB
설치 횟수 701
현재 버전 1.3
최근 업데이트 2022-10-17
출시 날짜 2017-05-25
평점 3.67/5 총 3 개의 평점
개발자 Sverrir Á. Berg
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://sverrirab.github.io/google-account-chooser/
도움말 페이지 URL https://github.com/sverrirab/google-account-chooser#questions-and-answers
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "Sverrir \u00c1. Berg",
    "homepage_url": "https:\/\/github.com\/sverrirab\/google-account-chooser",
    "name": "Google Account Chooser",
    "version": "1.3",
    "description": "Automatically Choose Google Account.",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "icons": {
        "128": "res\/logo_128.png"
    },
    "page_action": {
        "default_title": "Automatically Choose Google Account",
        "default_icon": "res\/gray_icon.png",
        "default_popup": "res\/popup.html"
    },
    "background": {
        "scripts": [
            "extension.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/accounts.google.com\/o\/oauth2\/*",
                "https:\/\/accounts.google.com\/o\/oauth2\/auth\/oauthchooseaccount?*",
                "https:\/\/accounts.google.com\/AccountChooser\/signinchooser?*"
            ],
            "js": [
                "google_accounts.js"
            ]
        }
    ],
    "manifest_version": 2
}