Greasy Fork is available in English.

关掉开通 QQ 空间的提示

再关掉 QQ 空间之后,每次进入空间时都会有一个烦人的提示。这个脚本去掉这个提示。

// ==UserScript==
// @name         关掉开通 QQ 空间的提示
// @namespace    https://www.kindjeff.com/
// @version      2017.2.8
// @description  再关掉 QQ 空间之后,每次进入空间时都会有一个烦人的提示。这个脚本去掉这个提示。
// @author       kindJeff
// @match        http://user.qzone.qq.com/*
// ==/UserScript==

(function() {
    'use strict';

    var remove_block = function(){
        document.body.removeChild(document.getElementById('top_tips_container'));
    };

    var main_loop = setInterval(function(){
        if(document.getElementById('top_tips_container')!==null){
            clearInterval(main_loop);
            remove_block();
            document.getElementsByClassName('top-fix-inner')[0].style = "";
        }
    }, 1000);
})();