Reddit Inline Ad Removal

Finds all CSS classes that contain "promotedlink" and hides them.

2022/08/26のページです。最新版はこちら。

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください。
/* ==UserStyle==
@name			Reddit Inline Ad Removal
@author			Michael Spurlock
@description	Finds all CSS classes that contain "promotedlink" and hides them.
@version		1.0.0
@namespace		cascadea2369008074
@license		CC
@preprocessor	default
==/UserStyle== */

@-moz-document domain("reddit.com")
{
	
	[class*="promotedlink"] {
		display: none;
	}
}