Diolog Extension streamlines the process, saving you time and effort
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"name": "Diolog email integration",
"version": "1.0.19",
"manifest_version": 2,
"description": "Diolog Extension streamlines the process, saving you time and effort",
"icons": {
"16": "icons/logo16x16.png",
"32": "icons/logo32x32.png",
"48": "icons/logo48x48.png",
"128": "icons/logo128x128.png"
},
"browser_action": {
"default_popup": "index.html"
},
"permissions": [
"tabs",
"storage"
],
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
],
"run_at": "document_end"
}
],
"browser_specific_settings": {
"gecko": {
"id": "{1d532abd-90f1-4601-afc0-1990b363c64a}"
}
},
"content_security_policy": "script-src 'self'; object-src 'self'"
}