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": "KadeEmail - Your Email Forwarder",
"version": "1.4",
"description": "Generate temporary email addresses with one click. Protect your privacy online.",
"author": "KadeMail",
"homepage_url": "https:\/\/kade.email",
"permissions": [
"storage",
"activeTab",
"scripting",
"tabs",
"contextMenus"
],
"host_permissions": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
},
"icons": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"exclude_matches": [
"https:\/\/*.kade.email\/*",
"https:\/\/*.facebook.com\/*",
"https:\/\/*.messenger.com\/*",
"https:\/\/*.google.com\/*",
"https:\/\/*.twitter.com\/*"
],
"js": [
"content.js"
],
"css": [
"content.css"
],
"run_at": "document_idle",
"all_frames": true
}
],
"background": {
"service_worker": "background.js"
},
"web_accessible_resources": [
{
"resources": [
"icons\/*"
],
"matches": [
"<all_urls>"
]
}
]
}