0

Block shop trong shopee

Viết thì nghe oai thế thôi, thực chất thì chỉ là một dòng script để loại bỏ đi các shop mà mình không muốn nhìn thấy. ✌️

console.log("Start")
var shopId = ["135799413","142444136","155023597","9762633"];
var items = document.querySelectorAll('.row.shopee-search-item-result__items [data-sqe="item"] [data-sqe="link"]');
for (var i = 0; i < items.length; i++) {
	var item = items[i];
	var href = item.getAttribute('href');
	for (var j = 0; j < shopId.length; j++) {
		var filter = shopId[j]
		if (href.includes(filter)) {	
			item.parentElement.parentElement.remove()
		}
	}
}

trong đó shopId là thằng này 976263x được in đậm như trong hình. Hình như nó là id của shop thì phải

https://shopee.vn/Tên-một-món-hàng-nào-đó.976263x.1188498772

Viết chơi chơi nên cũng chưa nuột cho lắm 😃


All rights reserved

Viblo
Hãy đăng ký một tài khoản Viblo để nhận được nhiều bài viết thú vị hơn.
Đăng kí