Skip to content

Instantly share code, notes, and snippets.

@mksglu
Created May 31, 2020 10:49
Show Gist options
  • Save mksglu/3fb0c9edcf5858041ba951088bb90bd4 to your computer and use it in GitHub Desktop.
Save mksglu/3fb0c9edcf5858041ba951088bb90bd4 to your computer and use it in GitHub Desktop.
Sözcü'de bazen okumak istediğim bir haber olduğunda ısrarla karşıma çıkan popup'un ağzını yüzünü kıran bir kod parçası.
var p=Array.prototype.slice.call(document.querySelectorAll(".fc-ab-root"));p.forEach(function(o){o.parentNode.removeChild(o)}),document.body.style.overflow="auto";
@evrend
Copy link

evrend commented Oct 14, 2020

Chrome'da Custom JavaScript for websites 2 eklentisi ile, ilgili domain için yaklaşık 500ms timeout vererek çalıştırırsanız. Popup her girdiğiniz sayfada otomatik olarak temizleniyor.

setTimeout(function(){ var p=Array.prototype.slice.call(document.querySelectorAll(".fc-ab-root"));p.forEach(function(o){o.parentNode.removeChild(o)}),document.body.style.overflow="auto"; }, 500);

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment