특정 영역을 숨깁니다
// ==UserScript==
// @name 페이지 불필요 요소 숨기기
// @namespace https://greasyfork.org/users/000000
// @version 1.0.0
// @description 특정 영역을 숨깁니다
// @match *://*/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
const style = document.createElement('style');
style.textContent = `
#bannerList,
[style] ~ ul,
.notice,
#footer_wrap,
#bnb_wrap,
#bo_vc,
#bo_v_atc {
display: none !important;
}
`;
document.head.appendChild(style);
})();