Inspect and view changes in Email Chattifier 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": "Email Chattifier",
"version": "0.0.5",
"description": "Re-formats your email conversation into something more readable, like a chat archive",
"icons": {
"16": "assets/icon-16.png",
"48": "assets/icon-48.png",
"128": "assets/icon-128.png"
},
"permissions": [
"tabs"
],
"content_scripts": [
{
"matches": [
"https://mail.google.com/*"
],
"js": [
"bundle.js"
]
}
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"page_action": {
"default_title": "Email Chattifier",
"default_popup": "popup.html",
"default_icon": "assets/icon-128.png"
},
"manifest_version": 2
}