// ==UserScript== // @name 妮可动漫工具 // @namespace // @version 0.2 // @description remove nav element // @author cut_hand // @match http://www.nicotv.club/ // @match http://www.nicotv.me/ // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; // Your code here... let ad = document.querySelectorAll('.ff-bg') console.log(ad) ad[0].remove() })();