Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "TempMailHub - Temporary Gmail",
"version": "1.0.2",
"description": "Generate temporary Gmail addresses instantly. Protect your inbox from spam with disposable emails.",
"author": "TempMailHub",
"homepage_url": "https:\/\/tempmailhub.org",
"permissions": [
"storage",
"notifications",
"contextMenus",
"alarms"
],
"host_permissions": [
"http:\/\/admin.tempmailhub.org\/*",
"https:\/\/tempmailhub.org\/*",
"http:\/\/localhost:3000\/*"
],
"action": {
"default_popup": "popup\/popup.html",
"default_icon": {
"16": "icons\/icon-16.png",
"32": "icons\/icon-32.png",
"48": "icons\/icon-48.png",
"128": "icons\/icon-128.png"
},
"default_title": "TempMailHub - Generate Temp Gmail"
},
"background": {
"service_worker": "background\/background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"lib\/utils.js",
"content\/content.js"
],
"css": [
"content\/content.css"
],
"run_at": "document_end"
}
],
"options_page": "options\/options.html",
"icons": {
"16": "icons\/icon-16.png",
"32": "icons\/icon-32.png",
"48": "icons\/icon-48.png",
"128": "icons\/icon-128.png"
},
"commands": {
"generate-email": {
"suggested_key": {
"default": "Alt+T",
"mac": "Alt+T"
},
"description": "Generate new temp email"
},
"copy-email": {
"suggested_key": {
"default": "Alt+C",
"mac": "Alt+C"
},
"description": "Copy current email to clipboard"
},
"_execute_action": {
"suggested_key": {
"default": "Alt+Shift+T",
"mac": "Alt+Shift+T"
}
}
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
}
}