Google Account Chooser

Google Account Chooser

Automatically Choose Google Account.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "Sverrir Á. Berg",
  "homepage_url": "https://github.com/sverrirab/google-account-chooser",
  "name": "Google Account Chooser",
  "version": "1.3",
  "description": "Automatically Choose Google Account.",
  "permissions": [
    "activeTab",
    "storage"
  ],
  "icons": {
    "128": "res/logo_128.png"
  },
  "page_action": {
    "default_title": "Automatically Choose Google Account",
    "default_icon": "res/gray_icon.png",
    "default_popup": "res/popup.html"
  },
  "background": {
    "scripts": [
      "extension.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "https://accounts.google.com/o/oauth2/*",
        "https://accounts.google.com/o/oauth2/auth/oauthchooseaccount?*",
        "https://accounts.google.com/AccountChooser/signinchooser?*"
      ],
      "js": [
        "google_accounts.js"
      ]
    }
  ],
  "manifest_version": 2
}