NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Флибуста как надо // @namespace flibusta.net.uo1.net // @description Шрифт побольше в читалке, да ограничение её ширины // @version 1 // @grant none // @include /^https?:\/\/(flibusta\.is|flibustahezeous3\.onion)\/b\/\d+\/read$/ // @licence MIT // ==/UserScript== (function() { var style = "font-size: 2em; line-height: 1em"; function applyStyles() { var sw = window.innerWidth - 800; if (sw <= 0) { sw = 0; } var hsw = sw / 2; $("#main").attr({style: style + '; padding: 0 ' + hsw + 'px 0 ' + hsw + 'px'}); } window.onresize = function () { applyStyles(); }; applyStyles(); })();