G-Switcher
Allows a user to easily switch between Google accounts
G-Switcher là gì?
G-Switcher là một tiện ích mở rộng Chrome được phát triển bởi https://skyler.cc, và tính năng chính của nó là "Allows a user to easily switch between Google accounts".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng G-Switcher
Tải xuống các tệp mở rộng G-Switcher 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
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | G-Switcher |
ID | fkpnpedmgcpjnmglbjckfjhnodoacnan |
URL Chính Thức | https://chromewebstore.google.com/detail/g-switcher/fkpnpedmgcpjnmglbjckfjhnodoacnan |
Mô tả | Allows a user to easily switch between Google accounts |
Kích Thước Tệp | 110 KB |
Số Lần Cài Đặt | 58 |
Phiên Bản Hiện Tại | 1.1 |
Cập Nhật Lần Cuối | 2022-01-02 |
Ngày Phát Hành | 2020-09-20 |
Đánh Giá | 4.20/5 Tổng số 5 Đánh Giá |
Nhà Phát Triển | https://skyler.cc |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://skyler.cc/projects/g-switcher |
URL Trang Trợ Giúp | https://skyler.cc/contact |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |