Greasy Fork is available in English.
Bypass Washington Post paywall.
< Feedback on Washington Post Paywall Bypass
Here's how to fix scroll lockEdit 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!
It still failed to scroll https://www.washingtonpost.com/technology/2023/02/14/chatgpt-dan-jailbreak/article
Sign in to post a reply.
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!