Google Account Chooser

A simple extension to choose Google accounts per tab.

什么是Google Account Chooser?

Google Account Chooser是由Adam Goldstein开发的Chrome扩展程序,该扩展的主要功能是“A simple extension to choose Google accounts per tab.”。

扩展截图

screenshot
screenshot
screenshot

下载Google Account Chooser扩展crx文件

下载Google Account Chooser扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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).                    

扩展基本信息

名称 Google Account Chooser Google Account Chooser
ID pdbppghdicnfoeomddlophldnednbmji
官方URL https://chromewebstore.google.com/detail/google-account-chooser/pdbppghdicnfoeomddlophldnednbmji
简介 A simple extension to choose Google accounts per tab.
文件大小 33.77 KB
安装次数 150
当前版本 1.0.1
更新时间 2020-06-03
上架时间 2020-06-02
评分 5.00/5 共3次评分
开发者 Adam Goldstein
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/agoldstein03/Account-Chooser-Extension
帮助页面URL https://github.com/agoldstein03/Account-Chooser-Extension/issues
支持的语言 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"
    }
}