NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name hide achievements // @version 0.1 // @description Скрипт скроет ачивки на странице у всех пользователей. // @author SThorn // @copyright 2019, Newt300 (https://openuserjs.org//users/Newt300) // @match http*://shikimori.org/* // @grant none // @run-at document-end // @license MIT // ==/UserScript== (function() { 'use strict'; if (document.querySelector('.profile-content .achievements')) { document.querySelector('.profile-content .achievements').style.display = 'none'; } })();