Gmail Address Checker

Gmail Address Checker

You need to confirm you want to send mail

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "version": "0.1.1",
  "manifest_version": 2,
  "description": "__MSG_extDescription__",
  "content_scripts": [
    {
      "matches": [
        "https://mail.google.com/mail/*"
      ],
      "run_at": "document_end",
      "css": [
        "jquery-ui-1.10.3.custom.css"
      ],
      "js": [
        "jquery-2.0.1.min.js",
        "jquery-ui-1.10.3.custom.min.js",
        "jquery.ui.whenScrollBottom.js",
        "AddressChecker.user.js"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "https://mail.google.com/mail/*"
  ],
  "options_page": "options.html",
  "background": {
    "page": "background.html"
  },
  "default_locale": "en",
  "icons": {
    "32": "icon-032.png",
    "48": "icon-048.png",
    "128": "icon-128.png"
  }
}