Inspect and view changes in inboxy: Inbox Bundles for Gmail 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": "inboxy: Inbox Bundles for Gmail",
"version": "1.6.5",
"description": "Adds Google Inbox bundles to Gmail",
"homepage_url": "https://www.inboxymail.com",
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"*://mail.google.com/mail/*"
],
"js": [
"content.js"
],
"css": [
"style.css"
],
"run_at": "document_start",
"all_frames": false
}
],
"options_ui": {
"page": "options/options.html",
"browser_style": false,
"open_in_tab": true
},
"permissions": [
"storage",
"declarativeContent"
],
"action": {
"default_icon": {
"16": "icons/inboxy.png",
"24": "icons/inboxy@1.5x.png",
"32": "icons/inboxy@2x.png"
},
"default_popup": "popup/popup.html",
"show_matches": [
"*://mail.google.com/mail/*"
]
},
"icons": {
"16": "icons/inboxy.png",
"32": "icons/inboxy@2x.png",
"48": "icons/inboxy@3x.png",
"128": "icons/inboxy@8x.png"
},
"web_accessible_resources": [
{
"resources": [
"assets/*.svg"
],
"matches": [
"https://mail.google.com/*"
]
}
],
"manifest_version": 3
}