// ==UserScript== // @name Hoster DOMAIN INFO // @namespace http://tampermonkey.net/ // @version 2024-01-03 // @description All serviceinfo__title add "white-space: pre-line" // @author You // @match https://hoster.kz/cabinet/ // @icon https://www.google.com/s2/favicons?sz=64&domain=hoster.kz // @grant none // ==/UserScript== (function() { // Находим все элементы с классом serviceinfo__title var titles = document.querySelectorAll('.serviceinfo__title'); // Проходим по каждому найденному элементу titles.forEach(function(title) { // Применяем стиль с использованием атрибута style title.setAttribute("style", "white-space: pre-line;"); }); })();