Temp Mail - Disposable Temporary Email

Temp Mail - Disposable Temporary Email

Temporary disposable email address. Protect your email from spam, bots and phishing with TempMail.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "short_name": "TempMail",
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "version": "0.1.0",
  "default_locale": "en",
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "icons": {
    "16": "img/16x16.png",
    "48": "img/48x48.png",
    "128": "img/128x128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": "img/128x128.png",
    "default_popup": "popup.html",
    "default_title": "TempMail"
  },
  "web_accessible_resources": [],
  "permissions": [
    "storage",
    "notifications",
    "tabs",
    "contextMenus",
    "alarms"
  ],
  "host_permissions": [
    "*://*.temp-mail.org/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content_script.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ]
}