Switch between Multiple Google Accounts
Keyboard shorcuts to Switch between Multiple Google Accounts
Switch between Multiple Google Accountsとは何ですか?
Switch between Multiple Google AccountsはAdityaによって開発されたChromeの拡張機能で、その主な機能は「Keyboard shorcuts to Switch between Multiple Google Accounts」です。
拡張機能のスクリーンショット
Switch between Multiple Google Accounts拡張機能のCRXファイルをダウンロード
Switch between Multiple Google Accounts拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Keyboard shortcuts to Switch between different accounts of various Google products. You can use any one of the below two shortcuts (If one of the below doesn't work or is assigned to other plugin you can use the other one ) - 1) Press ALT+ 1, ALT + 2, .... ALT+9 to switch to first, second, third.. google account. 2) Press SHIFT+ 1, SHIFT + 2, ... SHIFT +9 to switch to first, second, third.. google account. It works on:- Gmail Drive Meet Calendar Docs Sheets Slides Forms Keep Photos Maps
拡張機能の基本情報
名前 | Switch between Multiple Google Accounts |
ID | nlmcbmeicbooompjafliaoiodifdhnpd |
公式URL | https://chromewebstore.google.com/detail/switch-between-multiple-g/nlmcbmeicbooompjafliaoiodifdhnpd |
説明 | Keyboard shorcuts to Switch between Multiple Google Accounts |
ファイルサイズ | 21.48 KB |
インストール数 | 25 |
現在のバージョン | 1.0 |
最終更新日 | 2022-06-23 |
公開日 | 2022-01-05 |
評価 | 3.75/5 合計 4 レビュー |
開発者 | Aditya |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Switch between Multiple Google Accounts", "description": "Keyboard shorcuts to Switch between Multiple Google Accounts", "version": "1.0", "manifest_version": 3, "background": { "service_worker": "background.js" }, "permissions": [ "tabs" ], "options_page": "options.html", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "key_press.js" ], "run_at": "document_start" } ], "icons": { "16": "icon_16.png", "48": "icon_48.png", "128": "icon_128.png" } } |