Inspect and view changes in Zabbix Maintenance Scheduler source codes across current and past versions
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,
"name": "Zabbix Maintenance Scheduler",
"version": "1.2",
"description": "An extension to create maintenance periods in Zabbix",
"permissions": [
"storage",
"http://*/",
"https://*/"
],
"background": {
"scripts": [
"background.js"
]
},
"browser_action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
},
"options_ui": {
"page": "options.html",
"open_in_tab": false
},
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"browser_specific_settings": {
"gecko": {
"id": "zabbix-maintenance-scheduler@izi-it.io",
"strict_min_version": "58.0"
}
}
}