Warning: fopen(/www/sites/update.greasyfork.icu/index/store/forever/1aca2e8763451b62e1d33b04f1672f16.js): failed to open stream: No space left on device in /www/sites/update.greasyfork.icu/index/scriptControl.php on line 65
// ==UserScript==
// @name NGA 版头/版规/置顶部分折叠
// @namespace https://greasyfork.org/zh-CN/users/164691-shy07
// @version 0.1
// @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/*
// @downloadURL none
// ==/UserScript==
/* jshint ignore:start */
var inline_src = (<> toppedTopic.style.display = toppedTopic.style.display === 'none' ? 'block': 'none';
const container = document.querySelector('#toptopics .small_colored_text_btn');
container.href = 'javascripts:;';
container.addEventListener('click', toggle);
/* jshint ignore:start */
]]>>).toString();
var c = Babel.transform(inline_src, { presets: [ "es2015", "es2016" ] });
eval(c.code);
/* jshint ignore:end */