XDM integration module for Firefox Quantum.This addon should be used with XDM 2018 and higher to take over download from Firefox.Please visit https://github.com/subhra74/xdm for more information.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 2,
"minimum_chrome_version": "18.0",
"name": "XDM Browser Monitor",
"description": "XDM integration module for Firefox Quantum",
"version": "2.2",
"icons": {
"48": "icon.png"
},
"background": {
"page": "background.html"
},
"browser_action": {
"default_icon": "icon.png"
},
"permissions": [
"tabs",
"cookies",
"contextMenus",
"activeTab",
"webRequest",
"webRequestBlocking",
"*://*/*"
],
"applications": {
"gecko": {
"id": "browser-mon@xdman.sourceforge.net"
}
},
"commands": {
"toggle-monitoring": {
"suggested_key": {
"default": "Ctrl+Shift+E",
"mac": "Command+Shift+E"
},
"description": "Toggle monitoring"
}
}
}