Created
November 2, 2021 22:56
-
-
Save greghunt/ed068af6972e418e39f652b396fbfecd to your computer and use it in GitHub Desktop.
By-pass New York Times Pay Wall Article
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
var w = window.open("Article", "blank"); var content = Array.prototype.map.call(document.querySelectorAll('.StoryBodyCompanionColumn'), ( el ) => `<p>${el.textContent}</p>` ).join(''); w.document.write(`<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/base.min.css"><link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/components.min.css"><link rel="stylesheet" href="https://unpkg.com/@tailwindcss/[email protected]/dist/typography.min.css"><link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/utilities.min.css"><body class="prose mx-auto my-20">${content}</body>`); w.document.close(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment