Easy Log-in to Webmail

This add-on lets you to log in automatically to webmail service.
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"
      ]
    }
  ]
}