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