Last active
January 1, 2026 21:06
-
-
Save mlsof21/6b7229d41883ce61d34ccf7930b94a99 to your computer and use it in GitHub Desktop.
ATK Paywall Bypass
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 ATK Paywall Bypass | |
| // @namespace | |
| // @version 0.1 | |
| // @description Bypass America's Test Kitchen paywall | |
| // @author mlsof21 | |
| // @match https://www.americastestkitchen.com/recipes/* | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=githubusercontent.com | |
| // @grant none | |
| // @downloadURL https://gist.githubusercontent.com/mlsof21/6b7229d41883ce61d34ccf7930b94a99/raw/a9a10457795527c7a8212d5f06016fe276f7253f/atkPaywallBypass.js | |
| // @updateURL https://gist.githubusercontent.com/mlsof21/6b7229d41883ce61d34ccf7930b94a99/raw/a9a10457795527c7a8212d5f06016fe276f7253f/atkPaywallBypass.js | |
| // ==/UserScript== | |
| (() => { | |
| document.getElementById("piano-modal-backdrop").remove(); | |
| document.getElementById("piano-modal").remove(); | |
| const body = document.querySelector('body.atk'); | |
| body.style.overflow = null; | |
| body.style.position = null; | |
| })(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment