NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name ОБНОВЛЕНИЕ ЦЕНЫ // @namespace http://tampermonkey.net/ // @version 0.1 // @description ыывыв // @author MORTYLZT // @match https://lolz.guru/market/* // @grant none // @license MIT // @copyright 2021, jasdkasdasdads (https://openuserjs.org/users/jasdkasdasdads) // ==/UserScript== setInterval(jive_belarus, 1500); function jive_belarus(){ if(window.location.pathname.match(/^\/market\/\d+\/$/)) { $.ajax({ url: window.location.href, method: 'get', dataType: 'html', success: function(data){ pr = $(data).find(".price:first-child").text().trim(); $(".price:first-child > span:first-child").text(pr); } }); } }