Created
August 4, 2026 06:13
-
-
Save juliandunn/0dd8048fd385c87024259ee05c610f43 to your computer and use it in GitHub Desktop.
Remove blurred content and subscriber overlay box from Oregonlive.com
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==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