Remove the annoying subscription popup from proxmox ve web ui.
// ==UserScript==
// @name Deannoy proxmox ve
// @namespace http://tampermonkey.net/
// @version 1.1
// @description Remove the annoying subscription popup from proxmox ve web ui.
// @author u-foka
// @include https://*:8006/
// @grant none
// @license MIT
// ==/UserScript==
(function() {
'use strict';
// Disable subscription popup
Proxmox.Utils.checked_command = function(orig){ orig(); };
})();