Greasy Fork is available in English.

隐藏开通QQ空间提示横幅

关闭QQ空间后,每次进入空间都会出现“开通空间”提示横幅。这个脚本隐藏横幅。

Ajankohdalta 10.8.2019. Katso uusin versio.

// ==UserScript==
// @name         隐藏开通QQ空间提示横幅
// @description  关闭QQ空间后,每次进入空间都会出现“开通空间”提示横幅。这个脚本隐藏横幅。
// @namespace    https://greasyfork.org/users/197529
// @homepage     https://greasyfork.org/scripts/371302
// @supportURL   https://greasyfork.org/scripts/371302/feedback
// @author       kkocdko
// @license      Unlicense
// @version      0.3.6
// @match        *://user.qzone.qq.com/*
// @run-at       document-start
// @noframes
// ==/UserScript==
'use strict'

document.head.insertAdjacentHTML('beforeend', `<style>

#top_tips_container, #top_tips_seat {
  display: none !important;
}

.top-fix-inner {
  margin: 0 !important;
}

</style>`)