Last active
December 23, 2018 10:37
-
-
Save doctaweeks/d66529bbbfa46cc217d926e8b1463e5e to your computer and use it in GitHub Desktop.
Block the New York Post adblock block
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name nypost_adblock_block_block | |
// @namespace doctaweeks | |
// @include https://nypost.com/* | |
// @version 1 | |
// @grant none | |
// ==/UserScript== | |
window.addEventListener('beforescriptexecute', function(e) { | |
window._sp_.config.content_control_callback = null; | |
}, true); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment