您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
去除网页版简书在阅读时的广告弹窗
// ==UserScript== // @name 简书去广告 // @namespace http://tampermonkey.net/ // @version 0.2 // @description 去除网页版简书在阅读时的广告弹窗 // @author wkstudy // @match https://www.jianshu.com/p/* // @icon https://www.google.com/s2/favicons?sz=64&domain=jianshu.com // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; /** window.onload = function() { var id = setInterval(function() { var leftad = document.getElementById('duilian002') // 左边广告 var rightad = document.getElementById('aaabbbc') // 右边广告 var btmad = document.getElementById('close1'); // 右边底部广告1 var note =document.getElementById('note'); // 右边底部广告2 if( leftad || rightad || btmad || note) { leftad && leftad.parentNode.parentNode.remove(); rightad && rightad.parentNode.parentNode.remove(); btmad && btmad.parentNode.remove(); note && note.remove() } else { console.log('success remove ads') clearInterval(id) } }, 500) }; */ window.onload = function() { var leftad = document.getElementById('duilian002') // 左边广告 var rightad = document.getElementById('aaabbbc') // 右边广告 var btmad = document.getElementById('close1'); // 右边底部广告1 var note =document.getElementById('note'); // 右边底部广告2 leftad && leftad.parentNode.parentNode.remove(); rightad && rightad.parentNode.parentNode.remove(); btmad && btmad.parentNode.remove(); note && note.remove() } })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址