// ==UserScript== // @name 去除网页中讨厌元素的小工具 // @namespace http://tampermonkey.net/ // @version 0.4 // @description 通过css去掉网页中那些令人讨厌的东西,比如腾讯课堂的正在观看弹幕,简书的推荐故事等 // @author 星河 // @match https://www.jianshu.com/* // @match https://ke.qq.com/* // @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== // @grant none // @license MIT // @downloadURL none // ==/UserScript== (function() { 'use strict'; setTimeout(() => { const url = window.location.href; if (url.includes('jianshu')) { //简书去除右侧推荐故事 const arr = document.querySelectorAll('._3Z3nHf'); arr[1].style.cssText = 'display: none'; }else if (url.includes('ke.qq')) { //腾讯课堂去除正在观看弹幕 const style = document.createElement('style'); style.appendChild(document.createTextNode('#video-container div { transform: scale(0, 0) }')); document.querySelector('#video-container').appendChild(style); } }, 3000); })();