Google Account Chooser

A simple extension to choose Google accounts per tab.

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 Adam Goldstein, và tính năng chính của nó là "A simple extension to choose Google accounts per tab.".

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

screenshot
screenshot
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

                        Have you ever gotten an error when trying to view a Google Form because it was created in an organization that you were a part of, but had logged in as a secondary account? Have you ever had a file on Google Drive shared with you, but gotten an error because it was shared with your secondary account? Some of those services have an icon in the top right-hand corner to switch your account, but some of them don't. This extension helps with those services that don't.

Never again settle for the advice of "log out of all your Google accounts and log back in with just this one." If you're like me, you've been there, and are in no rush to get back.

The permissions are limited and reasonable. It should not significantly affect performance. All the code is short, readable, commented, and completely open source (https://github.com/agoldstein03/Account-Chooser-Extension).                    

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

Tên Google Account Chooser Google Account Chooser
ID pdbppghdicnfoeomddlophldnednbmji
URL Chính Thức https://chromewebstore.google.com/detail/google-account-chooser/pdbppghdicnfoeomddlophldnednbmji
Mô tả A simple extension to choose Google accounts per tab.
Kích Thước Tệp 33.77 KB
Số Lần Cài Đặt 150
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2020-06-03
Ngày Phát Hành 2020-06-02
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Adam Goldstein
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/agoldstein03/Account-Chooser-Extension
URL Trang Trợ Giúp https://github.com/agoldstein03/Account-Chooser-Extension/issues
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Google Account Chooser",
    "short_name": "Account Chooser",
    "version": "1.0.1",
    "minimum_chrome_version": "40",
    "description": "A simple extension to choose Google accounts per tab.",
    "browser_action": {
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "activeTab",
        "*:\/\/accounts.google.com\/*"
    ],
    "icons": {
        "16": "logo16.png",
        "24": "logo24.png",
        "32": "logo32.png",
        "48": "logo48.png",
        "64": "logo64.png",
        "128": "logo128.png"
    }
}