// ==UserScript== // @name Chiphell论坛入口 // @description 添加Chiphell论坛入口 // @namespace Chiphell.com/bbs // @version 0.1 // @author lqzh // @copyright lqzh // @include http*://www.chiphell.com/* // @grant none // @license MIT // @downloadURL none // ==/UserScript== (function() { 'use strict'; var hasBBS = Array.from(document.querySelectorAll("#nv > ul > li")).slice(-1)[0].textContent.includes('论坛'); if (hasBBS) return ; var bbsLi = document.createElement('li'); bbsLi.innerHTML='论坛'; document.querySelector("#nv > ul").appendChild(bbsLi); })();