Inspect and view changes in Gmelius for Gmail: Shared Inboxes and Labels, Email Automation & Analytics 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": "__MSG_extName__",
"short_name": "Gmelius",
"author": "Gmelius Ltd",
"description": "__MSG_extDescription__",
"default_locale": "en",
"version": "9.1.5",
"manifest_version": 3,
"homepage_url": "https://gmelius.com",
"permissions": [
"activeTab",
"declarativeNetRequest",
"scripting",
"storage"
],
"host_permissions": [
"https://mail.google.com/*",
"https://*.googleusercontent.com/*",
"https://gmelius.io/*",
"https://app.gmelius.com/*"
],
"optional_host_permissions": [
"https://gml.email/*"
],
"background": {
"service_worker": "background.bundle.js"
},
"web_accessible_resources": [
{
"resources": [
"html/proxyIframe.html",
"proxy.bundle.js",
"pageWorld.js"
],
"matches": [
"https://mail.google.com/*"
]
}
],
"action": {
"default_icon": "icons/icon32.png",
"default_title": "My Gmelius Dashboard",
"default_popup": "html/dashboard.html"
},
"content_scripts": [
{
"js": [
"app.bundle.js"
],
"matches": [
"https://mail.google.com/*"
],
"exclude_matches": [
"*://mail.google.com/*/?mui=ca",
"*://mail.google.com/tasks/*"
],
"run_at": "document_end"
},
{
"all_frames": true,
"js": [
"authentication.bundle.js"
],
"matches": [
"https://gmelius.io/authorize*"
],
"run_at": "document_start"
},
{
"all_frames": true,
"js": [
"authentication.bundle.js"
],
"matches": [
"https://app.gmelius.com/authorize*"
],
"run_at": "document_start"
}
],
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'; worker-src 'self'"
},
"incognito": "split",
"options_page": "html/dashboard.html",
"externally_connectable": {
"matches": [
"https://gmelius.io/*",
"https://app.gmelius.com/*"
]
},
"declarative_net_request": {
"rule_resources": [
{
"id": "blockTrackerImageRuleset",
"enabled": true,
"path": "declarativeNetRequest/blockTrackerImageRuleset.json"
}
]
}
}