NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name Remove Coursehero Monthly Limit
// @description Removes the Coursehero monthly document preview limit (originally 3).
// @author Luigi Agcaoili
// @include *coursehero.com/file/*
// @version 1.0.2
// @grant none
// @namespace https://greasyfork.org/users/208370
// @updateURL https://github.com/luigia/Remove-Coursehero-Monthly-Limit/raw/master/remove-coursehero-daily-limit.user.js
// @copyright 2019, luigia (https://github.com/luigia)
// @license MIT
// ==/UserScript==
window.addEventListener('load', () => {
// pop-up modals
if ( document.querySelector('.mfp-wrap') && document.querySelector('.mfp-bg') ) {
let wrap = document.querySelector('.mfp-wrap'),
bg = document.querySelector('.mfp-bg');
wrap.remove();
bg.remove();
}
// remove dynamically added styles
document.body.className = '';
document.body.style.cursor = '';
// re-enable scrolling
document.body.style.setProperty ("overflow", "visible", "important");
document.body.click();
}, false);