Skip to content

Instantly share code, notes, and snippets.

@mlsof21
Last active January 1, 2026 21:06
Show Gist options
  • Select an option

  • Save mlsof21/6b7229d41883ce61d34ccf7930b94a99 to your computer and use it in GitHub Desktop.

Select an option

Save mlsof21/6b7229d41883ce61d34ccf7930b94a99 to your computer and use it in GitHub Desktop.
ATK Paywall Bypass
// ==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