Skip to content

Instantly share code, notes, and snippets.

@asiluoy
Last active February 6, 2021 03:46
Show Gist options
  • Save asiluoy/6ad7bf2114a8e4bfc35d78b50f79692a to your computer and use it in GitHub Desktop.
Save asiluoy/6ad7bf2114a8e4bfc35d78b50f79692a to your computer and use it in GitHub Desktop.
신토불이 네이버 쇼핑

신토불이 네이버 쇼핑

네이버 쇼핑에서 해외직구를 제외한 결과물만 보여줍니다.

설치

적용 전

적용 후

// ==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