Inspect and view changes in Baxter - Email Organizer & Unsubscriber 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_appName__",
"author": "star",
"version": "1.20.1",
"manifest_version": 3,
"description": "__MSG_appDescription__",
"icons": {
"16": "assets/icons/icon-16.png",
"32": "assets/icons/icon-32.png",
"48": "assets/icons/icon-48.png",
"64": "assets/icons/icon-64.png",
"128": "assets/icons/icon-128.png"
},
"default_locale": "en",
"devtools_page": "devtools.html",
"content_scripts": [
{
"matches": [
"*://mail.google.com/*"
],
"js": [
"content.bundle.js"
],
"css": [
"assets/css/main.css"
],
"run_at": "document_end"
}
],
"background": {
"service_worker": "serviceWorker.bundle.js"
},
"permissions": [
"storage",
"tabs",
"notifications",
"alarms",
"cookies"
],
"host_permissions": [
"https://mail.google.com/*",
"https://usebaxter.com/*",
"https://chrome.google.com/webstore/*",
"https://*.usebaxter.com/*",
"https://*.openai.com/"
],
"action": {
"default_icon": {
"16": "assets/icons/icon-16.png",
"32": "assets/icons/icon-32.png",
"48": "assets/icons/icon-48.png",
"64": "assets/icons/icon-64.png",
"128": "assets/icons/icon-128.png"
},
"default_title": "Baxter Extension",
"default_popup": "popup.html"
},
"web_accessible_resources": [
{
"resources": [
"gmailJsLoader.bundle.js",
"assets/*"
],
"matches": [
"<all_urls>"
]
}
]
}