Examine source code of Gateway Auto Login

Inspect and view changes in Gateway Auto Login source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Gateway Auto Login",
  "version": "1.1",
  "description": "Automatically login to the Gateway OS when opening a new window or Tab without entering credentials.",
  "permissions": [
    "tabs",
    "storage",
    "http://*/*",
    "https://*/*"
  ],
  "author": "Gateway Operating System",
  "icons": {
    "48": "icons/favicon_gateway_48.png"
  },
  "options_page": "pages/settings.html",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "scripts/content.min.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "scripts/background.min.js"
    ]
  },
  "web_accessible_resources": [
    "manifest.json",
    "icons/*.png",
    "images/*.png",
    "images/*.jpg",
    "css/*.css",
    "auth.html",
    "js/*.js"
  ]
}