G-Switcher
Allows a user to easily switch between Google accounts
什么是G-Switcher?
G-Switcher是由https://skyler.cc开发的Chrome扩展程序,该扩展的主要功能是“Allows a user to easily switch between Google accounts”。
扩展截图
下载G-Switcher扩展crx文件
下载G-Switcher扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
G-Switcher is a web extension that makes it easy to switch between Google accounts. This is especially useful for switching between a personal, and school/work account. Oftentimes our personal accounts are set as the default account, while we have our school/work account as secondary accounts. When working, it's often annoying to have to continually use Google's UI to switch to your account when going between Gmail, Google Classroom, Google Drive, and other Google services. G-Switcher allows us to change our default Google account with only 1 click. Simply click the extension icon in your browser bar to cycle between accounts. After cycling through all of your accounts, you can click again to disable the extension, and again to re-enable it and restart on your first account. This extension collects NO personal data.
扩展基本信息
名称 | G-Switcher |
ID | fkpnpedmgcpjnmglbjckfjhnodoacnan |
官方URL | https://chromewebstore.google.com/detail/g-switcher/fkpnpedmgcpjnmglbjckfjhnodoacnan |
简介 | Allows a user to easily switch between Google accounts |
文件大小 | 110 KB |
安装次数 | 58 |
当前版本 | 1.1 |
更新时间 | 2022-01-02 |
上架时间 | 2020-09-20 |
评分 | 4.20/5 共5次评分 |
开发者 | https://skyler.cc |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://skyler.cc/projects/g-switcher |
帮助页面URL | https://skyler.cc/contact |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "G-Switcher", "version": "1.1", "description": "Allows a user to easily switch between Google accounts", "icons": { "48": "icon.png" }, "browser_action": { "default_icon": "icon.png", "default_title": "G-Switcher" }, "background": { "scripts": [ "action.js", "install.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*.google.com\/*" ], "js": [ "swap.js" ] } ], "permissions": [ "storage" ], "options_ui": { "page": "options.html" } } |