注意:在保存之后,您可能需要清除浏览器缓存才能看到所作出的变更的影响。
?_=1来访问最新页面。https://mobile.moegirl.org.cn/User:Leranjun/js/RedirectContribsToggle.js?_=1/*
RedirectContribsToggle.js
Version 1.0
Made with ♥ by User:Leranjun
*/
$(function() {
if (mw.config.get("wgCanonicalSpecialPageName") !== "Contributions" || !$(".mw-tag-mw-new-redirect")[0]) {
return;
}
mw.loader.using( ['mediawiki.util', 'ext.gadget.site-lib'] ).then(function() {
$(mw.util.addPortletLink(
"p-tb", "#", wgULS("切换显示重定向贡献", "切換顯示重新導向貢獻"), "t-lr-RedirectContribsToggle"
)).click(function(e) {
e.preventDefault();
$(".mw-tag-mw-new-redirect").toggle();
});
});
});