MailTo

MailTo

One click to open your mail client with the current tab's URL in a new message

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "MailTo",
  "version": "1.1.1",
  "description": "One click to open your mail client with the current tab's URL in a new message",
  "applications": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "permissions": [
    "storage",
    "activeTab"
  ],
  "options_ui": {
    "page": "options.html",
    "browser_style": true
  },
  "icons": {
    "24": "icons/mail.svg",
    "48": "icons/mail.svg",
    "96": "icons/mail.svg"
  },
  "background": {
    "scripts": [
      "sendoff.js"
    ]
  },
  "browser_action": {
    "default_icon": "icons/mail.svg",
    "default_title": "MailTo"
  }
}