Clean Wikiwand
// ==UserScript==
// @name userscript-clean-wikiwand
// @namespace http://tampermonkey.net/
// @version 0.0.0
// @description Clean Wikiwand
// @author kvoon
// @match https://www.wikiwand.com/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=wikiwand.com
// @grant none
// ==/UserScript==
(function() {
'use strict';
// TODO: use better way to detect el
const timer = setInterval(() => {
const el = document.querySelector('.intro_wrapper__bEjtR')
if(el) {
el.remove()
clearInterval(timer)
}
}, 100)
})();