ページ上のdisplay:none;を消しちゃう
/* * @title display:none;を消す * @description ページ上のdisplay:none;を消しちゃう * @include http://* * @license MIT License */ (function(){ document.body.innerHTML=document.body.innerHTML.replace(/display:none;/g,''); })();