Newt300 / hide achievements

// ==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';
    }
})();