Examine source code of Easy Log-in to Webmail

Inspect and view changes in Easy Log-in to Webmail 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": "Easy Log-in to Webmail",
  "version": "1.0.1",
  "description": "This add-on lets you to log in automatically to webmail service.",
  "icons": {
    "96": "icon.png"
  },
  "permissions": [
    "storage"
  ],
  "browser_action": {
    "default_icon": "icon.png",
    "default_title": "Easy Log-in to Webmail",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://webmail01.meti.go.jp/ui/*"
      ],
      "js": [
        "contents.js"
      ]
    }
  ]
}