Last active
November 7, 2016 20:53
-
-
Save eddroid/f614bf64f765017a0c637f466b8b872f to your computer and use it in GitHub Desktop.
Bypassing Paywalls
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
// Paste into the JavaScript console. | |
// | |
// Add "javascript:" to the front if you want to bookmark it | |
// South Florida Business Journal | |
$('.content--embargoed').attr('style', 'display: block !important; opacity: 1');$('.paywall--premium').remove();$('.paywall--free').remove();$('.paywall--free').hide();$('.content__segment').show(); | |
// Miami Herald | |
$("#ppUI").hide() && $("#pressplusOverlay").hide() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment