99 Minute Mail - Best temp mail

99 Minute Mail - Best temp mail

Generate temporary mail addresses with one click and receive mails directly to your browser. No more logins necessary. [Note - I have only ported this over from chrome and am not the owner of the extension or the source code]

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",
  "browser_specific_settings": {
    "gecko": {
      "id": "{10244bc8-d77c-4c83-b24f-af69c7c1640c}"
    }
  }
}