Inspect and view changes in Temp Mail - Disposable Temporary Email source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"version": "1.2.4",
"manifest_version": 2,
"name": "Temp Mail - Disposable Temporary Email",
"short_name": "Temp Mail",
"description": "Protect your inbox from spam! Use Temp mail for disposable temporary email addresses, and keep your email from unwanted messages.",
"permissions": [
"notifications",
"storage",
"https://*/*"
],
"browser_action": {
"default_title": "Temp Mail",
"default_popup": "assets/html/popup.html"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
]
}
],
"icons": {
"16": "assets/images/icon16.png",
"32": "assets/images/icon32.png",
"48": "assets/images/icon48.png",
"128": "assets/images/icon128.png"
},
"background": {
"scripts": [
"background.js"
]
},
"web_accessible_resources": [
"assets/**"
],
"browser_specific_settings": {
"gecko": {
"id": "info@tempimail.org",
"strict_min_version": "42.0"
}
}
}