MailCheck

MailCheck

Suggests a right domain when you misspell it in an email address.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_extName__",
  "description": "__MSG_extDescription__",
  "version": "1.6.2",
  "default_locale": "en",
  "permissions": [
    "notifications",
    "storage"
  ],
  "icons": {
    "16": "resources/images/icon16.png",
    "48": "resources/images/icon48.png",
    "128": "resources/images/icon128.png"
  },
  "web_accessible_resources": [
    "resources/images/icon16.png",
    "resources/images/icon128.png"
  ],
  "options_page": "resources/pages/options.html",
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "resources/lib/jquery.min.js",
        "resources/lib/mailcheck.min.js",
        "resources/lib/bootstrap.min.js",
        "resources/js/script.min.js"
      ],
      "css": [
        "resources/css/style.min.css"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'"
}