clean macmillandictionary.com ads
// ==UserScript== // @name cleanMacmillandictionaryComAds // @namespace http://tampermonkey.net/ // @version 0.12 // @description clean macmillandictionary.com ads // @author [email protected] // @match *.macmillandictionary.com/* // @match *.macmillanthesaurus.com/* // @icon https://www.google.com/s2/favicons?sz=64&domain=macmillandictionary.com // @grant none // @license MIT // @run-at document-body // ==/UserScript== (function() { 'use strict'; var css = [ '.limit-max-width > .row:nth-child(2),.limit-max-width > .row:nth-child(4)', ',[id*="google_ads"]', ',.left-content .thes-links', ',.max-90em,#potw+.limit-max-width', ',.limit-max-width > .center-xs .responsive-img', '{display:none!important}', '.floating-search{display:block!important}', '.col-sm-8,.col-sm-content-with-leftslot{max-width:unset;}' ].join('') var style = document.createElement('style'); style.innerText = css; document.body.appendChild(style) })();