NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Ficbook TabLines Button // @namespace * // @description Добовляет в редактор кнопку "расставить отступы" // @include https://ficbook.net/* // @version 1 // @grant none // ==/UserScript== function doTabs(){ $('#content').each(function () { $(this).val($(this).val().replace(/^(\t|<tab>)*/gm, '<tab>')); }); } $('#do_typograf').before( $('<div/>').addClass("text-format-button") .attr("id","do_tabs") .css("display","inline-block") .attr("title","Добавить <tab> в начало всех строк") .html(" Расставить отступы") .prepend($("<i/>").text("<tab>").css("font-weight","bold")) .insertBefore($('#do_typograf')) .click(doTabs) );