Inspect and view changes in Notion-like Mail Formatting 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": "Notion-like Mail Formatting",
"version": "1.0",
"description": "Use notion-like HTML elements while composing emails",
"background": {
"scripts": [
"./scripts/background.js"
],
"persistent": true
},
"icons": {
"192": "logo.png"
},
"content_scripts": [
{
"matches": [
"http://mail.google.com/*"
],
"js": [
"./scripts/content.js"
]
}
],
"permissions": [
"https://mail.google.com/*"
],
"browser_action": {
"default_popup": "./index.html"
},
"manifest_version": 2
}