NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// MAL Search Filter! // version 1.2 // 2010-06-14 // Copyright (c) 2009, Bastvera <bastvera@gmail.com> // Released under the GPL license // http://www.gnu.org/copyleft/gpl.html // ==UserScript== // @name MAL don't show score one page // @include *://myanimelist.net/anime/* // @include *://myanimelist.net/manga/* // @description This script hides search results that you already have on your list // @version 1.4.3 // @license MIT // @author Bastvera <bastvera@gmail.com>, Cpt_mathix <fixed script> // @updateURL https://openuserjs.org/meta/cloudberrybob/dont_show_score_one_page.meta.js // @downloadURL https://openuserjs.org/install/cloudberrybob/dont_show_score_one_page.user.js // @namespace https://greasyfork.org/users/16080 // ==/UserScript== insertCss('div.score-label {display: none !important; }') insertCss('div.js-statistics-info {display: none !important; }') insertCss('span.score-label {display: none !important; }') insertCss('span.ranked {display: none !important; }') function insertCss(css){ var head = document.head || document.getElementsByTagName('head')[0], style = document.createElement('style'); head.appendChild(style); style.type = 'text/css'; if (style.styleSheet){ // This is required for IE8 and below. style.styleSheet.cssText = css; } else { style.appendChild(document.createTextNode(css)); } }