네이버 쇼핑에서 해외직구를 제외한 결과물만 보여줍니다.
Last active
February 6, 2021 03:46
-
-
Save asiluoy/6ad7bf2114a8e4bfc35d78b50f79692a to your computer and use it in GitHub Desktop.
신토불이 네이버 쇼핑
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name 신토불이 네이버 쇼핑 | |
// @namespace https://github.com/asiluoy | |
// @version 0.1 | |
// @description 네이버 쇼핑에서 해외직구를 제외한 결과물만 보여줍니다. | |
// @author Yu Lisa | |
// @match https://search.shopping.naver.com/* | |
// @grant none | |
// ==/UserScript== | |
addEventListener('scroll', function() { | |
var result = Array.from(document.getElementsByClassName("ad_label__Ve7Bp")) | |
for(var x of result){ | |
x.parentNode | |
.parentNode | |
.parentNode | |
.parentNode | |
.remove() | |
} | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment