观察者网移动端页面去除页顶APP横幅,去除页底推荐横幅,去除。。。
// ==UserScript==
// @name 观察者网移动版去横幅
// @namespace http://tampermonkey.net/
// @version 0.1
// @description 观察者网移动端页面去除页顶APP横幅,去除页底推荐横幅,去除。。。
// @author 3mile
// @match http*://*.guancha.cn/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
//$(".g_swiper_container, .g_header44, .recentArticles, .g_hot, .g_latestNews").hide();
var h1 = document.querySelectorAll('.g_header44, .g_swiper_container, .g_special, .recentArticles, .g_hot, .g_latestNews, .g_more')
for(var i=0;i<h1.length;i++){
h1[i].style.display = 'none'
//h1.item(i).remove()
}
})();