99 Minute Mail - the best trash email

99 Minute Mail - the best trash email

Generate temporary mail addresses with one click and receive mails directly to your browser. No more logins necessary.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "default_locale": "en",
  "description": "__MSG_description__",
  "icons": {
    "16": "img/icon.png",
    "32": "img/icon.png",
    "64": "img/icon.png",
    "128": "img/icon2.png"
  },
  "manifest_version": 2,
  "name": "__MSG_name__",
  "background": {
    "scripts": [
      "js/lib/helper.js",
      "js/lib/jquery.js",
      "js/lib/bg_messageHandler.js",
      "js/lib/bg_inboxPoller.js",
      "js/background.js"
    ]
  },
  "browser_action": {
    "default_title": "__MSG_name__",
    "default_icon": "img/icon.png",
    "default_popup": "html/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_end",
      "js": [
        "js/contentScript.js"
      ],
      "css": [
        "css/icofont.css"
      ]
    }
  ],
  "web_accessible_resources": [
    "fonts/icofont.woff",
    "fonts/icofont.woff2"
  ],
  "permissions": [
    "storage",
    "tabs",
    "activeTab",
    "contextMenus",
    "notifications",
    "clipboardWrite"
  ],
  "version": "1.11"
}