Google Account Chooser

Automatically Choose Google Account.

Google Account Chooser là gì?

Google Account Chooser là một tiện ích mở rộng Chrome được phát triển bởi Sverrir Á. Berg, và tính năng chính của nó là "Automatically Choose Google Account.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Google Account Chooser

Tải xuống các tệp mở rộng Google Account Chooser dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Google Account Chooser Google Account Chooser
ID fldnfjcbkcklcbcbjojlinecjpbmiapi
URL Chính Thức https://chromewebstore.google.com/detail/google-account-chooser/fldnfjcbkcklcbcbjojlinecjpbmiapi
Mô tả Automatically Choose Google Account.
Kích Thước Tệp 19.14 KB
Số Lần Cài Đặt 701
Phiên Bản Hiện Tại 1.3
Cập Nhật Lần Cuối 2022-10-17
Ngày Phát Hành 2017-05-25
Đánh Giá 3.67/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Sverrir Á. Berg
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://sverrirab.github.io/google-account-chooser/
URL Trang Trợ Giúp https://github.com/sverrirab/google-account-chooser#questions-and-answers
Ngôn Ngữ Được Hỗ Trợ 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
}