为导航栏新添加一个最新发表标签
当前为
// ==UserScript==
// @name MT论坛
// @namespace http://tampermonkey.net/
// @description 为导航栏新添加一个最新发表标签
// @version 0.2
// @author MT-戒酒的李白染
// @icon https://bbs.binmt.cc/favicon.ico
// @match *://bbs.binmt.cc/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
var ele = document.createElement('li');
var url = window.location.href;
ele.id = "latest_publication"
ele.innerHTML = '<a href="https:\/\/bbs.binmt.cc\/forum.php?mod=guide&view=newthread" hidefocus="true">最新发表<\/a>';
document.getElementsByClassName("wp comiis_nvbox cl")[0].children[1].appendChild(ele);
if(url=='https:\/\/bbs.binmt.cc\/forum.php?mod=guide&view=newthread')
{
ele.style.cssText='background: url("https:\/\/cdn2.bbs.binmt.cc\/template\/comiis_mi\/img\/nv_a.png") repeat-x 50% -50px;';
}
})();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址