clean cambridge.org ads
当前为
// ==UserScript== // @name cleanEpubReaderPage // @namespace http://tampermonkey.net/ // @version 0.20 // @description clean cambridge.org ads // @author [email protected] // @match *.freebusinessapps.net/* // @icon https://www.google.com/s2/favicons?sz=64&domain=freebusinessapps.net // @grant none // @license MIT // @run-at document.body // ==/UserScript== (function() { 'use strict'; var css = [ '.text-center,.board .board-footer', '{display:none!important}', ].join('') var style = document.createElement('style'); style.innerText = css; document.body.previousElementSibling.appendChild(style) })();