您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
观察者网移动端页面去除页顶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() } })();