Skip to content

Instantly share code, notes, and snippets.

@xrdPe
xrdPe / del-paywall.js
Created January 19, 2024 17:31
Saltar pago en publicaciones de "El Comercio"
(function () {
let firstBlock = document.querySelector(".story-contents .story-contents__font-paragraph");
if(firstBlock){
firstBlock.classList.remove("story-contents--fade");
}
let premiumBlock = document.querySelector(".story-content__nota-premium.paywall");
if(premiumBlock){
premiumBlock.style.height = 'auto';
premiumBlock.style.opacity = 1;
premiumBlock.style.userSelect = 'all';