Auto OAuth

Auto OAuth

Automatically log into sites with OAuth without having to always choose the account.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Auto OAuth",
  "description": "Automatically log into sites with OAuth without having to always choose the account.",
  "version": "1.1.1",
  "options_page": "src/options.html",
  "icons": {
    "16": "images/icon-16.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
  },
  "page_action": {
    "default_icon": {
      "16": "images/icon-16.png",
      "48": "images/icon-48.png",
      "128": "images/icon-128.png"
    },
    "default_title": "Auto OAuth",
    "default_popup": "src/menu.html"
  },
  "permissions": [
    "storage",
    "tabs",
    "contextMenus",
    "webNavigation",
    "https://accounts.google.com/o/oauth2/*",
    "https://login.microsoftonline.com/*"
  ],
  "web_accessible_resources": [
    "images/*",
    "src/menu.html"
  ],
  "background": {
    "scripts": [
      "src/pako.js",
      "src/background.js"
    ],
    "persistent": false
  }
}