// ==UserScript== // @name BetterNMF // @namespace ewtowit // @author ewtowit // @description 网易我的世界论坛简单优化和扩展 // @match https://mc.netease.com/* // @version 2NaCl // @license CC BY 4.0 // @downloadURL https://update.greasyfork.icu/scripts/424527/BetterNMF.user.js // @updateURL https://update.greasyfork.icu/scripts/424527/BetterNMF.meta.js // ==/UserScript== (function () { "use strict"; //在手机视图时访问PC视图 if (document.getElementsByTagName('meta')['viewport']) { var go_href = location.href + "?mobile=no"; window.open(go_href); }; //jq support let $ = jQuery; //给标签加个属性,用于检查 //$('html').attr('Nayt','Cute'); //移除栏目(帖子都看不了了挂着作甚) $('.md-module , .md').hide(); //移除底部 $("div#OPD-COPYRIGHT").hide() //看板绵羊 $('.stone-man').css('background','url(https://z3.ax1x.com/2021/05/23/gXtY5t.png) no-repeat bottom center/ contain'); //add avatar $('.avatar').css('margin','10px 15px'); $('.authi > a.xw1').each(function(){ var userpageurl = $(this).attr('href');//Like: ' //mc.netease.com/home.php?mod=space&uid=114514 var uid = userpageurl.substring(40); var avataradd = '
'; $(this).parent().parent().after(avataradd); }); //添加隐藏链接 $('.user-info > p').append('——————我的空间小黑屋排行榜被回收帖切换在线状态小组勋章'); //关闭签到提醒 $('#plugin_notice').hide(); //隐藏版块 if($(location).attr('href')=='https://mc.netease.com/'){ $('.fl').append('

隐藏版块

开发者版
开发者版
(111)

进行开发者问题的讨论互助

版主之城
版主之城 (51)

看看就行

'); }; })();