Inspect and view changes in Mailbutler 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",
"manifest_version": 3,
"name": "Mailbutler for Gmail",
"short_name": "Mailbutler",
"description": "__MSG_extDescription__",
"version": "8702.33687",
"default_locale": "en",
"background": {
"service_worker": "script/mailbutler_background.js"
},
"permissions": [
"scripting",
"storage",
"declarativeNetRequest",
"contextMenus",
"notifications",
"identity"
],
"host_permissions": [
"https://mail.google.com/",
"https://*.mailbutler.io/"
],
"oauth2": {
"client_id": "286484897993-b43gqtgdhg99bsp69ugk52b3m9etnqgl.apps.googleusercontent.com",
"scopes": [
"openid",
"email"
]
},
"content_scripts": [
{
"matches": [
"https://mail.google.com/mail/*"
],
"css": [
"css/mailbutler_content.css"
],
"js": [
"script/mailbutler_content.js"
],
"run_at": "document_end"
},
{
"matches": [
"https://*.mailbutler.io/auth/*"
],
"js": [
"script/oauth_callback.js"
],
"run_at": "document_end"
}
],
"web_accessible_resources": [
{
"resources": [
"assets/fonts/*",
"assets/img/*",
"_locales/*",
"pageWorld.js"
],
"matches": [
"https://mail.google.com/*"
],
"extension_ids": [],
"use_dynamic_url": false
}
],
"icons": {
"16": "assets/img/logo_16x16.png",
"48": "assets/img/logo_48x48.png",
"128": "assets/img/logo_128x128.png"
},
"homepage_url": "https://www.mailbutler.io"
}