Yanado turns your Gmail into powerful collaboration tool. Create tasks and turn emails into tasks within seconds.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"name": "Yanado - Task Management inside Gmail",
"short_name": "Yanado",
"description": "Yanado turns your Gmail into powerful collaboration tool. Create tasks and turn emails into tasks within seconds.",
"version": "2.0.0.1",
"icons": {
"16": "/icons/icon_16.png",
"48": "/icons/icon_48.png",
"128": "/icons/icon_128.png"
},
"web_accessible_resources": [
"script/static/main.js"
],
"content_scripts": [
{
"matches": [
"https://mail.google.com/*"
],
"js": [
"script/yanado.inject.js"
]
}
],
"externally_connectable": {
"matches": [
"*://*.yanado.com/*"
]
},
"manifest_version": 2,
"background": {
"page": "background.html"
},
"content_security_policy": "script-src 'self' https://*.yanado.com; object-src 'self'",
"permissions": [
"notifications",
"tabs",
"*://mail.google.com/*",
"*://apis.google.com/*",
"*://*.pusher.com/*",
"*://*.yanado.com/*"
],
"browser_action": {
"default_icon": {
"16": "icons/icon_16.png"
},
"default_title": "Yanado",
"default_popup": "popup/popup.html"
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}