To/Cc Checker for Gmail

To/Cc Checker for Gmail

Allows to pop up some lists easy to check any wrong addresses in TO/CC/BCC in your Gmail. (2013-02-03 Terada)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "version": "2.2",
  "name": "__MSG_extName__",
  "description": "__MSG_extDesc__",
  "page_action": {
    "default_icon": "icon.png",
    "default_title": "__MSG_extTooltip__",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://mail.google.com/*"
      ],
      "js": [
        "jquery-1.8.3.min.js",
        "content_script.js"
      ]
    }
  ],
  "default_locale": "en",
  "permissions": [
    "tabs"
  ]
}