Last active
March 1, 2018 16:22
-
-
Save coopy/855e7df0e6101775957cda17ba015df3 to your computer and use it in GitHub Desktop.
This file contains 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
javascript: (function () { | |
var content = document.querySelectorAll('.article__premium-content')[0]; | |
var intro = document.querySelectorAll('.article__lead')[0]; | |
var payWall = document.querySelectorAll('#serviceplusPaywallpaywall-container')[0]; | |
var social = document.querySelectorAll('.js-social-toolbar')[0]; | |
var ghost = document.querySelectorAll('.article__body--mask .article__lead')[0]; | |
intro.style.overflow = "visible"; | |
content.style.display = "block"; | |
payWall.style.display = "none"; | |
social.style.display = "none"; | |
ghost.style.position = "static"; | |
}()); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment