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 |
官方網址 | 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 |
電子郵箱 | [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" } } |