Greasy Fork is available in English.

Washington Post Paywall Bypass

Bypass Washington Post paywall.

< Feedback on Washington Post Paywall Bypass

Question/comment

§
Posted: 2022.04.05.

Here's how to fix scroll lock

Edit the script, find:

let s = document.createElement ("style");
s.innerHTML = `
[aria-label="Sections Navigation"] > div:nth-of-type(1),
[aria-label="Sections Navigation"] > div:nth-of-type(2),
.content_gate,
[data-chain-name="subscription-promo-chain"],
[data-qa="article-body-ad"],
[data-qa="subscribe-promo"],
[data-qa="subs-offer"],
.ent-ad-container,
.gift-offer,
#leaderboard-wrapper,
#nav-gift,
#nav-subscribe,
.paywall-overlay,
#subscribe-left-nav,
wp-ad {
display: none !important;
}`;


Replace with:
let s = document.createElement ("style");
s.innerHTML = `
[aria-label="Sections Navigation"] > div:nth-of-type(1),
[aria-label="Sections Navigation"] > div:nth-of-type(2),
.content_gate,
[data-chain-name="subscription-promo-chain"],
[data-qa="article-body-ad"],
[data-qa="subscribe-promo"],
[data-qa="subs-offer"],
.ent-ad-container,
.gift-offer,
#leaderboard-wrapper,
#nav-gift,
#nav-subscribe,
.paywall-overlay,
#subscribe-left-nav,
wp-ad {
display: none !important;
}
html, body {
overflow: unset;
}`;

Done!

Post reply

Sign in to post a reply.