Stay on top of emails with Todoist for Gmail
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,
"version": "7.1",
"name": "__MSG_appName__",
"description": "__MSG_appDesc__",
"default_locale": "en",
"icons": {
"16": "todoist_16.png",
"48": "todoist_48.png",
"128": "todoist_128.png",
"256": "todoist_256.png"
},
"content_scripts": [
{
"matches": [
"http://mail.google.com/*",
"https://mail.google.com/*"
],
"js": [
"content.js"
],
"run_at": "document_end"
}
],
"background": {
"service_worker": "background.js"
},
"permissions": [
"scripting"
],
"host_permissions": [
"http://*.todoist.com/*",
"https://*.todoist.com/*",
"https://mail.google.com/*",
"http://mail.google.com/*"
],
"web_accessible_resources": [
{
"resources": [
"frame.html"
],
"matches": [
"http://mail.google.com/*",
"https://mail.google.com/*"
]
},
{
"resources": [
"*.map"
],
"matches": [
"http://mail.google.com/*",
"https://mail.google.com/*"
]
}
]
}