您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
隐藏广告
// ==UserScript== // @name 新浪爱问共享资料 // @namespace http://tampermonkey.net/ // @version 0.1 // @description 隐藏广告 // @author AN drew // @match http://ishare.iask.sina.com.cn/f/* // @grant GM_addStyle // ==/UserScript== (function() { 'use strict'; GM_addStyle(`.copyright-container{display:none!important} .detail-fixed.detail-fixed-full{display:none!important} .detail-topbanner{display:none!important} #fix-right{display:none!important} .detail-search-info{display:none!important} .tui-open-vip{display:none!important} .guess-you-like{display:none!important} `); let timer = setInterval(function(){ if($('.show-more-text').text().indexOf('¥') > -1) { console.log($('.show-more-text').text()) clearInterval(timer); } else { $('.show-more-text .red-color').get(0).click(); } },100); })();