Finds all CSS classes that contain "promotedlink" and hides them.
/* ==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;
}
}