Tarnkappe Adblocker Bypass

Remove Anti-Adblocker from Tarnkappe.info

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         Tarnkappe Adblocker Bypass
// @version      1.0
// @namespace    Unknown
// @description  Remove Anti-Adblocker from Tarnkappe.info
// @match        https://tarnkappe.info/*
// @grant        none
// ==/UserScript==

(function() {
	'use strict';

	function removeAntiAdblocker() {
		// Remove Overlay
		document.querySelectorAll('.adblock-card-overlay').forEach(el => el.remove());

    const postOverlay = document.querySelector('.adblock-post-overlay');
		if (postOverlay) {
			postOverlay.remove();
		}

		// Remove Blur
		document.querySelectorAll('.card-content .media, .card-content .entry-content').forEach(el => {
			if (el.style.filter === "blur(7px)") {
				el.style.filter = "none";
			}

			el.style.filter = "none";
			el.style.pointerEvents = "auto";
		});

		document.querySelectorAll('.container.is-max-desktop').forEach(el => {
			el.style.filter = 'none';
			el.style.pointerEvents = 'auto';
		});
	}

	window.addEventListener('load', removeAntiAdblocker);

	const observer = new MutationObserver(removeAntiAdblocker);
	observer.observe(document.body, {
		childList: true,
		subtree: true
	});
})();