clean LinuxQuestions.Org ads
当前为
// ==UserScript== // @name cleanLinuxQuestionsOrg // @namespace http://tampermonkey.net/ // @version 0.15 // @description clean LinuxQuestions.Org ads // @author [email protected] // @match https://www.linuxquestions.org/* // @icon https://www.google.com/s2/favicons?domain=linuxquestions.org // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; var css = 'ins[id],ins[class*=google],div[id*=_ad_],td.page[valign="top"] > div[style*=center]{display:none!important}'; var q = document.querySelector('#cleanLinuxQuestionsOrg'); if(!q){ var s = document.createElement('style'); s.type = 'text/css'; s.id = 'cleanLinuxQuestionsOrg@mooring'; s.innerHTML = css; document.getElementsByTagName('head')[0].appendChild(s); } })();