yours3lf / Wikiwand paywall disabler

// ==UserScript==
// @name         Wikiwand paywall disabler
// @namespace    http://example.net/
// @version      1.0
// @description  Disables wikiwand paywall...
// @author       You
// @match        *://www.wikiwand.com/*
// @grant        none
// ==/UserScript==
/* jshint -W097 */
'use strict';

//paywall removal
var checkPwExist = setInterval(
function() 
{
   var pw = document.getElementById( "paywall" );
   if( pw ) 
   {
      pw.style.display = "none";
      clearInterval( checkPwExist );
   }
}, 200);

//paywall background removal
var checkPwBgExist = setInterval(
function() 
{
   var pwbg = document.getElementById( "paywall_bg" );
   if( pwbg ) 
   {
      pwbg.style.display = "none";
      clearInterval( checkPwBgExist );
   }
}, 200);

//content height restriction check
var checkCoHeReExist = setInterval(
function() 
{
   var coHeRe = document.getElementById( "content" );
   if( coHeRe ) 
   {
      coHeRe.style.maxHeight = "none";
      clearInterval( checkCoHeReExist );
   }
}, 200);