Compose an email from your tabs
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": "Email Tabs",
"version": "0.2.526resigned1",
"version_name": "0.2.525 release",
"description": "Compose an email from your tabs",
"author": "Mozilla Test Pilot Team (https://testpilot.firefox.com)",
"homepage_url": "https://github.com/mozilla/email-tabs/",
"icons": {
"48": "emailtabs.svg",
"96": "emailtabs.svg"
},
"applications": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "57.0a1"
}
},
"background": {
"scripts": [
"templateMetadata.js",
"providerMetadata.js",
"background.js",
"build/react.production.min.js",
"build/react-dom-server.browser.production.min.js",
"build/purify.min.js",
"build/emailTemplates.js"
]
},
"options_ui": {
"page": "options/options.html"
},
"browser_action": {
"browser_style": true,
"default_icon": "emailtabs.svg",
"default_title": "Email Tabs",
"default_popup": "popup.html"
},
"web_accessible_resources": [
"gmail-iframe.html"
],
"permissions": [
"activeTab",
"tabs",
"clipboardRead",
"clipboardWrite",
"notifications",
"storage",
"contextMenus",
"<all_urls>"
]
}