Skip to content

Instantly share code, notes, and snippets.

@juliandunn
Created August 4, 2026 06:13
Show Gist options
  • Select an option

  • Save juliandunn/0dd8048fd385c87024259ee05c610f43 to your computer and use it in GitHub Desktop.

Select an option

Save juliandunn/0dd8048fd385c87024259ee05c610f43 to your computer and use it in GitHub Desktop.
Remove blurred content and subscriber overlay box from Oregonlive.com
// ==UserScript==
// @name OregonLive Unblur Paragraphs
// @namespace http://tampermonkey.net/
// @version 1.0
// @description Overrides the .article__paragraph--blur class on OregonLive
// @author You
// @match https://www.oregonlive.com/*
// @grant GM_addStyle
// @run-at document-start
// ==UserScript==
(function() {
'use strict';
const css = `
.article__paragraph--blur {
filter: none !important;
-webkit-filter: none !important;
opacity: 1 !important;
user-select: auto !important;
pointer-events: auto !important;
mask-image: none !important;
-webkit-mask-image: none !important;
}
/* Completely remove subscriber content overlay boxes */
.content-blocker__wrapper {
display: none !important;
}
`;
if (typeof GM_addStyle !== 'undefined') {
GM_addStyle(css);
} else {
const style = document.createElement('style');
style.textContent = css;
(document.head || document.documentElement).appendChild(style);
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment