Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
mundo0349118y@ytho I think this is the most eficient adblocker out there. Implement easylist filters and you are done.
Maybe acceptable ads filters too. -
@mundo03 No ads are acceptable for me, if they need money, and their site's good, they'll get donations in. Works the same for most Open Source software, or did you ever see ads there? ;)
-
mundo0349118y@Gatgeagent I kind of agreeomming from video ad tech, I understand why ads exist.
Not everyone is willing to give even 1 dollar a month for a service or content.
And coming from adblocking, I know micro donations (in btc) are going to be a thing too really soon.
So you are of course rigth ;) -
mundo0349118y@crisz come-on dude, do not contribute to missinformation.
It is not a pay to get whitelisted deal.
If you are interested, Go to acceptableads.org,read the criteria and submit your site :)
I
I'm writing my own AdBlock Extension...
CSS:
.ad {
display: none;
}
JavaScript:
if (document.getElementById("ad").playsVideoAutomatically == true) {
getBlacklist.add(window.location.hostname);
alert("You are hereby banned from browsing " + window.location.hostname + " due to automatically playing video ad.");
}
Am I doing it right?
undefined