Hello. I wanted to translate the site into Russian via Tampermonkey, how to implement it? I tried everything, but something does not work
// ==UserScript== // @name TaORuS by LoyrLino // @namespace https://world.taobao.com // @version 0.0.1 // @description try to take over the world! // @author LoyrLino // @match *https://world.taobao.com* // @exclude *://taobao.com* // @grant none // ==/UserScript== $( "div.title text-16" ).replaceWith( "<h2>New heading</h2>" ); document.body.innerHTML = document.body.innerHTML.replace('εεεη±»', 'AndryMan'); var b = document.getElementsByClassName("block2")[0], i = b.innerHTML; b.className = "block3"; alert(i); 