Medium has egregious ads everywhere and ad-block also does not help. This just selects all member-only stories and hides them.
Remove Medium member-only articles by xav-ie
Details
Authorxav-ie
LicenseMIT
Categorymedium
Created
Updated
Size472 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
- Remove Medium ADs everywhere
Source code
/* ==UserStyle==
@name Remove Medium member-only articles
@version 20240517.23.55
@namespace https://userstyles.world/user/MIT
@description Medium has egregious ads everywhere and ad-block also does not help. This just selects all member-only stories and hides them.
@author MIT
==/UserStyle== */
@-moz-document url-prefix("https://medium.com/") {
article:has(button[aria-label="Member-only story"]) {
display: none;
}
}