Google Account Easy Switch

Google Account Easy Switch

Light weight extension that aids in Google Account switching without having to click on the account selector.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Google Account Easy Switch",
  "version": "1.1.2",
  "description": "Light weight extension that aids in Google Account switching without having to click on the account selector.",
  "permissions": [
    "tabs",
    "storage",
    "webNavigation"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "options_page": "options.html",
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "action": {
    "default_icon": "icon128.png",
    "default_title": "Google Account Easy Switch"
  },
  "commands": {
    "0": {
      "suggested_key": {
        "default": "Alt+1",
        "mac": "Alt+1"
      },
      "description": "Google Account ID: 0"
    },
    "1": {
      "suggested_key": {
        "default": "Alt+2",
        "mac": "Alt+2"
      },
      "description": "Google Account ID: 1"
    },
    "2": {
      "suggested_key": {
        "default": "Alt+3",
        "mac": "Alt+3"
      },
      "description": "Google Account ID: 2"
    },
    "3": {
      "suggested_key": {
        "default": "Alt+4",
        "mac": "Alt+4"
      },
      "description": "Google Account ID: 3"
    }
  }
}