NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Delete terrible VK header in docs // @namespace http://tampermonkey.net/ // @version 0.1 // @description очевидно из названия // @author me // @match https://vk.com/doc* // @grant none // @license MIT // @copyright 2018, colddegree (https://openuserjs.org//users/colddegree) // ==/UserScript== (function() { 'use strict'; let terribleHeader = document.querySelector(".docs_panel_wrap"); terribleHeader.parentElement.removeChild(terribleHeader); let iframe = document.getElementById("iframe"); iframe.style.paddingTop = "0"; iframe.style.marginTop = "0"; iframe.focus(); })();