quora-adblock

Quora adblock

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.

ستحتاج إلى تثبيت إضافة مثل Stylus لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتتمكن من تثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

(لدي بالفعل مثبت أنماط للمستخدم، دعني أقم بتثبيته!)

// ==UserScript==
// @name        quora-adblock
// @description Quora adblock
// @namespace   tz
// @include     https://www.quora.com/*
// @version     7
// @grant       none
// ==/UserScript==

const func = () => {
  var removed = 0;
  for (let el of document.querySelectorAll('.advertiser_endpoint')) {
    for (let i = 0; i < 8; ++i) {
      el = el.parentNode;
    }
    el.parentNode.removeChild(el);
    removed++;
  }

  if (!removed) {
    window.setTimeout(func, 1000);
  }
};

func();

var style = document.createElement('style');
style.innerHTML = `
  div[style*=blur], .signup_wall_prevent_scroll, #root {
    filter: none !important;
    overflow: scroll;
  }
  .qu-zIndex--modal_desktop, div[id*=signup_wall] {
    display: none !important;
  }
`;
document.head.appendChild(style);