Skip to content
This repository has been archived by the owner on Jan 1, 2022. It is now read-only.

Latest commit

 

History

History
24 lines (20 loc) · 726 Bytes

README.md

File metadata and controls

24 lines (20 loc) · 726 Bytes

DAGENS NYHETER (HTTP://WWW.DN.SE)

DN.SE gratis utan paywall

  1. Installera ad-block extension som upptäcks (Adblock Plus t.ex.)
  2. Encoda(https://mrcoles.com/bookmarklet/) och lägg till följande javascript som bokmärke
javascript:(function(){
if(window.location.origin.indexOf('dn.se') != -1){
	$("#pwOverlay").remove();
	$(".js-paywall").hide();
	$(".article__premium-content").show();  
	$(".article__body.article__body--mask").removeClass("article__body article__body--mask");
	sessionStorage.setItem('adBlockTracked', 'false');
	$(".modal.takeover-modal").remove();
	$(".modal.takeover-modal.test-a").remove();
	$(".gdpr-header").remove();
}else{
	window.location = "https://www.dn.se";
}
})();