CrazyProg / 3 September remover

// ==UserScript==
// @name         3 September remover
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        https://cabinet.greensight.ru/*
// @grant        none
// @author CrazyProg
// @license MIT
// ==/UserScript==

(function() {
    'use strict';

    $('body').removeAttr('style');
})();