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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" } } |