Inspect and view changes in Gmail Exporter 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
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "Gmail Exporter",
"version": "1.0.1",
"manifest_version": 3,
"action": {
"default_title": "Exporter",
"default_popup": "popup.html"
},
"description": "Install the Gmail Exporter Chrome extension and experience the ease of one-click email export.",
"content_scripts": [
{
"matches": [
"*://mail.google.com/*"
],
"js": [
"js/content.js",
"js/toastify.js",
"js/papaparse.js",
"js/crypto-js.min.js"
],
"css": [
"css/toastify.min.css"
]
}
],
"background": {
"service_worker": "js/background.js"
},
"web_accessible_resources": [
{
"resources": [
"js/pageWorld.bundle.js"
],
"matches": [
"*://mail.google.com/*"
]
}
],
"host_permissions": [
"*://mail.google.com/*"
],
"permissions": [
"tabs",
"scripting",
"contextMenus",
"declarativeContent"
],
"icons": {
"16": "icon_max.png",
"32": "icon_max.png",
"64": "icon_max.png",
"128": "icon_max.png",
"256": "icon_max.png"
}
}