Skip to content

Instantly share code, notes, and snippets.

@JosephTico
Created December 24, 2023 19:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JosephTico/c82f3df57c88811a93ed7e9d106d54bd to your computer and use it in GitHub Desktop.
Save JosephTico/c82f3df57c88811a93ed7e9d106d54bd to your computer and use it in GitHub Desktop.
La Nación Anti-paywall (Costa Rica)
// ==UserScript==
// @name Grupo Nación Paywall Remover
// @namespace Violentmonkey Scripts
// @include http*://*.nacion.com/*story/*
// @include http*://*.elfinancierocr.com/*story/*
// @grant none
// @version 1.0
// @author JosephTico
// @description 11/28/2022, 4:32:25 PM
// ==/UserScript==
// inject CSS into document
var customStyle = document.createElement('style');
customStyle.innerText = `
.article-body-wrapper__styled {
height: auto !important;
opacity: 1 !important;
user-select: initial !important;
visibility: initial !important;
}
.post {
display: none !important;
}
`;
document.head.appendChild(customStyle);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment