🏠 Home 

Greasy Fork is available in English.

微博去隐私#策弹框

屏蔽weibo的隐私#策弹框


安装此脚本?
// ==UserScript==
// @name     微博去隐私#策弹框
// @version      2.1
// @description 屏蔽weibo的隐私#策弹框
// @author       detected_me
// @require  http://cdn.bootcss.com/jquery/1.8.3/jquery.min.js
// @match        *://*.weibo.com/*
// @icon            http://weibo.com/favicon.ico
// @namespace https://greasyfork.org/users/192606
// ==/UserScript==
(function () {
setInterval(function(){
$('.layer_registerinfo').remove();
$('.W_layer_btn.S_bg1').remove();
$("div[node-type$='outer']").remove();
$('.W_layer_close').remove();
},100);
})();