cleanEpubReaderPage

clean cambridge.org ads

Fra 20.09.2022. Se den seneste versjonen.

// ==UserScript==
// @name         cleanEpubReaderPage
// @namespace    http://tampermonkey.net/
// @version      0.18
// @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',
        '{display:none!important}',
    ].join('')
    var style = document.createElement('style'); style.innerText = css; 
    document.body.previousElementSibling.appendChild(style)
})();