Disposable Email Helper

Disposable Email Helper

Easily insert and manage disposable email addresses (favorite + random) on popular platforms using a context menu on text fields.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Disposable Email Helper",
  "author": "Eric H Goldman",
  "version": "1.1.5",
  "minimum_chrome_version": "42",
  "manifest_version": 2,
  "description": "__MSG_manifestDescription__",
  "homepage_url": "https://github.com/erichgoldman/disposable-email-helper",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "default_locale": "en",
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "insertemail.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "services.js",
      "background.js"
    ],
    "persistent": true
  },
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "permissions": [
    "contextMenus",
    "tabs",
    "storage"
  ]
}