// ==UserScript== // @name 隐藏开通QQ空间横幅 // @namespace https://greasyfork.org/users/197529 // @version 0.2 // @description 关闭QQ空间之后,每次进入空间时都会有“开通空间”横幅。这个脚本隐藏横幅。 // @author kkocdko // @include *://user.qzone.qq.com/* // @downloadURL none // ==/UserScript== var style=document.createElement('style'); style.innerText='#top_tips_container{display:none!important}div.top-fix-inner{margin-top:0!important}'; document.head.appendChild(style);