I already have one that's effective as GENERIC non-site specfic:Wladimir Palant wrote:Not possible to use regexps with element hiding. Element hiding is only another way to write CSS. So you could for example add a number of filters:
yahoo.com#div(H4)
yahoo.com#div(nwad)
Or, if you really can't live without smashing hundred rules into one (which gives you absolutely
no performance improvement whatsoever) you can use raw CSS:
yahoo.com## div#H4, div#nwad, div#yredmods
#div(ad_box)
So to combine using CSS into one term along w/ #div(ad_box), NOT for optimization as just "organization in one generic catch - all filter):
#sponsor, #sponsors, .sponsor, .sponsors
It would be:
## div(ad_box), #sponsor, #sponsors, #.sponsor, #.sponsors
(??)
Otherwise I'm assuming separate entries would be:
#div(ad_box)
#sponsor
#sponsors
#.sponsor
#.sponsors
What I'm doing in meantime til I get answer: Stylish script/userContent based on Zoocar9's script plus my "addition." There will no doubt be others such as perhaps ".bottomad, .leftad, #leftad, .promo, #promo," et cetera.
.ad_box, #sponsor, #sponsors, .sponsor, .sponsors { display: none !important; }
Works great - if AB+ blocked elements, I'd prefer it - but since we're talking about "hiding" in both instances, it seems AB+ should be used for blocking and userContent for "appearance and/or hiding of elements." Just a personal opinion. I'm wondering which might be faster - content or AdBlock Plus - in managing "generic" element blocks.