Add annotations on your emails to remember something, or to coach how to craft a good email.
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": "Notes for Gmail™ by cloudHQ",
"short_name": "Notes by cloudHQ",
"description": "Add annotations on your emails to remember something, or to coach how to craft a good email.",
"version": "1.0.1.04",
"author": "https://www.cloudhq.net",
"content_scripts": [
{
"exclude_globs": [],
"css": [
"stylesheets/jquery.dropdown.css",
"stylesheets/popover.css"
],
"include_globs": [],
"matches": [
"https://mail.google.com/*",
"https://inbox.google.com/*"
],
"js": [
"content.js"
],
"run_at": "document_end"
},
{
"js": [
"cloudhq.js"
],
"matches": [
"https://www.cloudhq.net/*"
],
"run_at": "document_end"
}
],
"background": {
"service_worker": "background.js"
},
"permissions": [
"scripting",
"storage",
"background"
],
"host_permissions": [
"https://mail.google.com/",
"https://inbox.google.com/",
"https://www.cloudhq.net/"
],
"manifest_version": 3,
"web_accessible_resources": [
{
"resources": [
"javascripts/*",
"icons/*",
"*"
],
"matches": [
"*://*.cloudhq.net/*",
"https://mail.google.com/*"
]
}
],
"icons": {
"48": "icons/icon-48x48.png",
"128": "icons/icon-128x128.png"
},
"converted_from_user_script": true,
"externally_connectable": {
"matches": [
"*://*.cloudhq.net/*"
]
},
"action": {
"default_icon": "icons/icon-128x128.png",
"default_title": "Notes for Gmail by cloudHQ"
}
}