修行魔法的麻瓜 (@steve5wutongyu6) 在 临时屏蔽LinuxDO新增顶栏和底栏的油猴脚本 中发帖
// ==UserScript==
// @name 屏蔽 linux.do 指定区块
// @namespace http://tampermonkey.net/
// @version 1.1
// @description 在 linux.do 页面中隐藏顶部子系统菜单和底部自定义页脚
// @author Steve5wutongyu6
// @match *://linux.do/*
// @run-at document-end
// @grant none
// ==/UserScript==
(function() {
'use strict';
/**
* 删除所有匹配的元素
* @param {string} selector CSS 选择器
...