// ==UserScript== // @name NGA 版头/版规/置顶部分折叠 // @namespace https://greasyfork.org/zh-CN/users/164691-shy07 // @version 0.4 // @description 自动折叠 NGA 版头/版规/置顶部分,需要的时候可以点击版头按钮显示(替换跳转功能) // @author Shy07 // @require https://cdnjs.cloudflare.com/ajax/libs/babel-standalone/6.18.2/babel.js // @require https://cdnjs.cloudflare.com/ajax/libs/babel-polyfill/6.16.0/polyfill.js // @match http://nga.178.com/* // @grant none // jshint esversion:6 // @downloadURL none // ==/UserScript== (function() { 'use strict'; // Your code here... const toppedTopic = document.querySelector('#toppedtopic'); toppedTopic.style.display = 'none'; const toggle = () => toppedTopic.style.display = toppedTopic.style.display === 'none' ? 'block': 'none'; const container = document.querySelector('#toptopics .small_colored_text_btn'); container.href = 'javascript:;'; container.addEventListener('click', toggle); })();