NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Russian Flag Anvisual // @namespace http://tampermonkey.net/ // @version 2024-12-23 // @description Данный UserScript меняет флаг на русский (можно любой другой поставить) // @author HikJS // @match https://anivisual.net/* // @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; const newLogoUrl = 'https://upload.wikimedia.org/wikipedia/commons/d/d4/Flag_of_Russia.png'; const logoElement = document.getElementsByClassName('header__logo')[0].getElementsByTagName('img')[0]; if (logoElement) { logoElement.src = newLogoUrl; const link = document.querySelector('a[href="/"]'); link.textContent = 'Визуальные новеллы для русских'; var mainElement = document.querySelector('.main'); mainElement.style.backgroundImage = "url('https://i.ibb.co/Km798Sr/IMG-5874.webp')"; } })();