One click to open your mail client with the current tab's URL in a new message
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
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"
}
}