NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Zimbra naprawiacz // @namespace Electronic Studio // @version 0.1 // @description przywrócenie zimbry do stanu używalności // @author rbrck // @match https://zimbra.eo.pl/* // @grant none // @run-at document-start // ==/UserScript== /* jshint -W097 */ 'use strict'; window.setInterval(setWidth, 500); function setWidth() { if(document.getElementById("zv__CLV-main__CV")){ document.getElementById("zv__CLV-main__CV").style.width = '130%'; } }