Inspect and view changes in summarize.me — Gmail Summarizer 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": "summarize.me — Gmail Summarizer",
"version": "1.0.0",
"description": "A chrome extension that shortens long emails into concise summaries.",
"manifest_version": 3,
"author": "Adi Yeltay",
"permissions": [
"storage",
"activeTab",
"scripting"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "index.html",
"default_title": "summarize.me"
},
"icons": {
"16": "summarizelogo.png",
"48": "summarizelogo.png",
"128": "summarizelogo.png"
},
"content_scripts": [
{
"matches": [
"*://mail.google.com/*"
],
"js": [
"contentScript.js"
]
}
]
}