Site | Code |
---|---|
nexusmods.com |
'.*\.?nexusmods\.com': {
remove: ['.ads','#nn_skinl','#nn_skinr','.nn-sticky','.nn_player'],
interaction: true,
timeout: 2000,
trueRemove: true
} |
dtf.ru |
'.*\.?dtf\.ru': {
remove: ['.propaganda'],
interaction: true,
timeout: 3000,
trueRemove: true
} |
parade.com |
'.*\.?parade\.com': {
remove: ['.m-in-content-ad','.m-in-content-ad-row','.m-outbrain','.m-fixedbottom-ad--container','.m-ad'],
interaction: true,
timeout: 2000
} |
fandom.com |
'.*\.?fandom\.com': {
remove: ['.top-ads-container','.bottom-ads-container','#WikiaBar','.notifications-placeholder','.gpt-ad'],
interaction: true,
timeout: 2000,
trueRemove: true
}, |
-
-
Save Firepup6500/5936e3ac3e021f0a57562baa2f093d5b to your computer and use it in GitHub Desktop.
// ==UserScript== | |
// @name mf-adblock | |
// @namespace none | |
// @version 0.7 | |
// @description A basic anti-adblock workaround that can remove or click elements on a website | |
// @author DerFichtl, with major improvements by Firepup650 | |
// @match https://*/* | |
// @icon https://getadblock.com/favicon.ico | |
// @grant none | |
// @noframes | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
(() => { | |
let oldPushState = history.pushState; | |
history.pushState = function pushState() { | |
let ret = oldPushState.apply(this, arguments); | |
window.dispatchEvent(new Event('pushstate')); | |
window.dispatchEvent(new Event('locationchange')); | |
return ret; | |
}; | |
let oldReplaceState = history.replaceState; | |
history.replaceState = function replaceState() { | |
let ret = oldReplaceState.apply(this, arguments); | |
window.dispatchEvent(new Event('replacestate')); | |
window.dispatchEvent(new Event('locationchange')); | |
return ret; | |
}; | |
window.addEventListener('popstate', () => { | |
window.dispatchEvent(new Event('locationchange')); | |
}); | |
})(); | |
let sites = { | |
/* | |
'example.com': { // website domain, can be regex. | |
remove: ['.some-class','#some-element'], // Hide these elements (used for ads) - (DOES NOT REMOVE THEM, JUST HIDES THEM) | |
click: ['.class','#element'], // Click these elements (used for cookie consent) | |
interaction: true, // Move mouse cursor to trigger `onmousemove` ads | |
timeout: 2000, // In MS, how long to wait before doing anything | |
interval: 0, // In MS, how long to wait before redoing everything (Ignored if 0 or missing) (used if ads are added onscroll or timeout) | |
onChange: true, // Redo everything once page changes, but no refresh/reload occurs (IE: Discourse) | |
antiVignette: true, // Auto fix google vignette based issues | |
trueRemove: true // Actually remove elements instead of hiding them (WARNING: Might trigger adblock detection!) | |
background: '#ffffff' // Set a background-color, overflow:scroll, and position (used for custom fullpage ads) | |
}, | |
*/ | |
'.*\.?fandom\.com': { | |
remove: ['.top-ads-container','.bottom-ads-container','#WikiaBar','.notifications-placeholder','.gpt-ad'], | |
interaction: true, | |
timeout: 2000, | |
trueRemove: true | |
}, | |
} | |
let interval = null; | |
let hostname = document.location.hostname; | |
let loaded = false; | |
function cleanup() { | |
console.log("Running cleanup..."); | |
if(sites[hostname].interaction) { | |
document.body.dispatchEvent(new MouseEvent('mousemove')); | |
} | |
if(sites[hostname].remove) { | |
let selectors = sites[hostname].remove; | |
selectors.forEach(function(selector) { | |
let elements = document.querySelectorAll(selector); | |
console.log(selector, elements); | |
elements.forEach(function(elem) { | |
if (!sites[hostname].trueRemove) { | |
elem.style.visibility = 'hidden'; | |
elem.style.width = '1px'; | |
elem.style.height = '1px'; | |
elem.style.overflow = 'hidden'; | |
elem.style.opacity = 0; | |
} else { | |
elem.remove(); | |
} | |
}); | |
}); | |
} | |
if(sites[hostname].background) { | |
document.body.style.background = sites[hostname].background; | |
document.body.style.overflow = 'scroll'; | |
document.body.style.position = 'static'; | |
} | |
if(sites[hostname].click) { | |
let selectors = sites[hostname].click; | |
selectors.forEach(function(selector) { | |
let element = document.querySelector(selector); | |
if(!!element) { | |
element.click(); | |
} | |
}); | |
} | |
if(sites[hostname].antiVignette && window.location.hash && window.location.hash == "#google_vignette") { | |
window.location.href = window.location.href.split("#")[0] | |
} | |
} | |
if (!Object.keys(sites).indexOf(hostname) >= 0) { | |
for (const site in sites) { | |
const regex = new RegExp(site, "i"); | |
if(regex.test(hostname)) { | |
hostname = site; | |
} | |
} | |
} | |
if(Object.keys(sites).indexOf(hostname) >= 0) { | |
let timeout = 0; | |
if(sites[hostname].timeout) { | |
timeout = sites[hostname].timeout; | |
} | |
window.setTimeout(function(){ | |
cleanup(); | |
}, timeout); | |
if(sites[hostname].interval && !interval) { | |
interval = window.setInterval(function(){ | |
cleanup(); | |
}, sites[hostname].interval); | |
} | |
if(sites[hostname].onChange && !loaded) { | |
loaded = true; | |
window.addEventListener('locationchange', function () { | |
window.setTimeout(function(){ | |
cleanup(); | |
}, timeout); | |
}); | |
} | |
} | |
})(); |
layout | title | published | tags | |||
---|---|---|---|---|---|---|
post |
mf-adblock 0.7: A Tamper Monkey Adblocker |
true |
|
You can find the original gist here, which most of this description was pulled from.
This ad-blocker script for Tampermonkey won't trigger an adblock-block/adblock-detector script and so you could use it for pages that are annoying you with "please turn off your adblocker" messages. It just hides the ads and doesn't try to intercept the requests or remove the ads at all. So it won't make the websites faster, but it makes them cleaner and easier to read.
This script is not a generic solution and has to be configured for every website it should clean up. I don't provide configs for pages, just use your browser developer-tools to find the elements you want remove or click.
Tampermonkey is a browser extension for Firefox and Google Chrome that allows you to run scripts on websites. You can find Tampermonkey in the extension repository of your favorite browser vendor. Tampermonkey is a very popular plugin with hundreds of thousands downloads.
- Chrome: https://chrome.google.com/webstore/detail/tampermonkey/dhdgffkkebhmkfjojejmpbldmpobfkfo
- Firefox: https://addons.mozilla.org/firefox/addon/tampermonkey/
An array of css-selectors to click when the script is running. It's used to click away the cookie-consent banners or other popups.
{
'click': ['.cookies','#decline-cookies'],
}
An array of css-selectors of elements to remove when the script is running. Make sure that you have the right selector. Ads usually make iframes around them, so you have to find the element that consists the ad's iframe.
{
'remove': ['.ads','#powerup-ad'],
}
A Boolean to trigger a fake mouse-move at document load. You can use that for sites that wait for user-interaction to show consent-boxes or ads.
{
'interaction': true, // or false
}
A timeout in milliseconds to wait after document loads to start the ad-block script.
{
'timeout': 1000, // 1 second
}
A interval in milliseconds to repeat the ad-block script after. Used to remove ads that are loaded on scroll or a timeout after the document is ready. Don't use numbers that are very small, a few seconds (3000ms to 5000ms) between the runs usually works the best.
{
'interval': 5000, // 5 seconds
}
Sets a background color for sites that are doing full page custom ads with changed background color. It also sets overflow:scroll
and position:static
which is sometimes needed if you removed a blocking modal.
{
'background': '#ffffff', // white
}
A Boolean on whether or not to re-fire the script if the page changes (hash change, push state, etc.)
{
onChange: true, // Redo everything once page changes, but no refresh/reload occurs (IE: Discourse)
}
A Boolean on whether or not to auto fix issues cause by google vignette.
{
antiVignette: true, // Auto fix google vignette based issues
}
A Boolean on whether or not to actually remove elements instead of hiding them (WARNING: Might trigger adblock detection!)
{
trueRemove: true // Actually remove elements instead of hiding them (WARNING: Might trigger adblock detection!)
}
@Firepup6500 I'm with ya! Just need a template.
@Firepup6500 I'm with ya! Just need a template.
There's a template/example in the code:
/*
'example.com': { // website domain, can be regex.
remove: ['.some-class','#some-element'], // Hide these elements (used for ads) - (DOES NOT REMOVE THEM, JUST HIDES THEM)
click: ['.class','#element'], // Click these elements (used for cookie consent)
interaction: true, // Move mouse cursor to trigger `onmousemove` ads
timeout: 2000, // In MS, how long to wait before doing anything
interval: 0, // In MS, how long to wait before redoing everything (Ignored if 0 or missing) (used if ads are added onscroll or timeout)
onChange: true, // Redo everything once page changes, but no refresh/reload occurs (IE: Discourse)
antiVignette: true, // Auto fix google vignette based issues
trueRemove: true // Actually remove elements instead of hiding them (WARNING: Might trigger adblock detection!)
background: '#ffffff' // Set a background-color, overflow:scroll, and position (used for custom fullpage ads)
},
*/
Just gonna note this again:
repo: https://github.com/Firepup6500/tampermonkey-mf-adblock
@Firepup6500 I'm with ya! Just need a template.
There's a template/example in the code:
/* 'example.com': { // website domain, can be regex. remove: ['.some-class','#some-element'], // Hide these elements (used for ads) - (DOES NOT REMOVE THEM, JUST HIDES THEM) click: ['.class','#element'], // Click these elements (used for cookie consent) interaction: true, // Move mouse cursor to trigger `onmousemove` ads timeout: 2000, // In MS, how long to wait before doing anything interval: 0, // In MS, how long to wait before redoing everything (Ignored if 0 or missing) (used if ads are added onscroll or timeout) onChange: true, // Redo everything once page changes, but no refresh/reload occurs (IE: Discourse) antiVignette: true, // Auto fix google vignette based issues trueRemove: true // Actually remove elements instead of hiding them (WARNING: Might trigger adblock detection!) background: '#ffffff' // Set a background-color, overflow:scroll, and position (used for custom fullpage ads) }, */
I'm referring to the PR template that is used in some tables/lists for ease of copying, searching, viewing...
You want to put all the sites in one single code? I think it's good that everyone gets the config for the site they need in some table or list.
@Firepup6500 I'm with ya! Just need a template.
There's a template/example in the code:
/* 'example.com': { // website domain, can be regex. remove: ['.some-class','#some-element'], // Hide these elements (used for ads) - (DOES NOT REMOVE THEM, JUST HIDES THEM) click: ['.class','#element'], // Click these elements (used for cookie consent) interaction: true, // Move mouse cursor to trigger `onmousemove` ads timeout: 2000, // In MS, how long to wait before doing anything interval: 0, // In MS, how long to wait before redoing everything (Ignored if 0 or missing) (used if ads are added onscroll or timeout) onChange: true, // Redo everything once page changes, but no refresh/reload occurs (IE: Discourse) antiVignette: true, // Auto fix google vignette based issues trueRemove: true // Actually remove elements instead of hiding them (WARNING: Might trigger adblock detection!) background: '#ffffff' // Set a background-color, overflow:scroll, and position (used for custom fullpage ads) }, */I mean PR Template - easy to copy, search, view, ...
You want to put all the sites in one single code? I think it's good that everyone gets the config for the site they need in some table or list.
I could see about a PR template.
As for it all being in one code, I'm not concrete on how I want to handle that, so definitely up for discussion on that.
@hoosnick Just added a PR template and Issue templates, do those help?
Site | Code |
---|---|
nexusmods.com |
'.*\.?nexusmods\.com': {
remove: ['.ads','#nn_skinl','#nn_skinr','.nn-sticky','.nn_player'],
interaction: true,
timeout: 2000,
interval: 0,
trueRemove: true
} |
dtf.ru |
'.*\.?dtf\.ru': {
remove: ['.propaganda'],
interaction: true,
timeout: 3000,
interval: 0,
trueRemove: true
} |
parade.com |
'.*\.?parade\.com': {
remove: ['.m-in-content-ad','.m-in-content-ad-row','.m-outbrain','.m-fixedbottom-ad--container','.m-ad'],
interaction: true,
timeout: 2000,
interval: 0,
trueRemove: false
} |
Site Code
nexusmods.com'.*\.?nexusmods\.com': { remove: ['.ads','#nn_skinl','#nn_skinr','.nn-sticky','.nn_player'], interaction: true, timeout: 2000, interval: 0, trueRemove: true }dtf.ru
'.*\.?dtf\.ru': { remove: ['.propaganda'], interaction: true, timeout: 3000, interval: 0, trueRemove: true }parade.com
'.*\.?parade\.com': { remove: ['.m-in-content-ad','.m-in-content-ad-row','.m-outbrain','.m-fixedbottom-ad--container','.m-ad'], interaction: true, timeout: 2000, interval: 0, trueRemove: false }
Added those to sites.md
As a side note, everything you don't need for a particular site can be omitted, and the script will be fine.
For example,
'.*\.?parade\.com': { remove: ['.m-in-content-ad','.m-in-content-ad-row','.m-outbrain','.m-fixedbottom-ad--container','.m-ad'], interaction: true, timeout: 2000, interval: 0, trueRemove: false }
Could just be
'.*\.?parade\.com': {
remove: ['.m-in-content-ad','.m-in-content-ad-row','.m-outbrain','.m-fixedbottom-ad--container','.m-ad'],
interaction: true,
timeout: 2000
}
If y'all want, you could start PRing these into the Repo, then I'll sync it here every so often.