Greasy Fork

Greasy Fork is available in English.

MT论坛

为导航栏新添加一个最新发表标签

当前为 2020-04-19 提交的版本,查看 最新版本

// ==UserScript==
// @name         MT论坛
// @namespace    http://tampermonkey.net/
// @description  为导航栏新添加一个最新发表标签
// @version      0.1
// @author       MT-戒酒的李白染
// @icon         https://bbs.binmt.cc/favicon.ico
// @match        *://bbs.binmt.cc/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    var ele = document.createElement('li');
    ele.innerHTML = '<li id="latest_publication"><a href="https:\/\/bbs.binmt.cc\/forum.php?mod=guide&view=newthread" hidefocus="true" title="Space">最新发表<span>Space<\/span><\/a><\/li>';
    document.getElementsByClassName("wp comiis_nvbox cl")[0].children[1].appendChild(ele);

})();