Created
December 29, 2022 11:40
-
-
Save ginpei/ea7eb0325880e4798dab43bc21ab9781 to your computer and use it in GitHub Desktop.
Dim off items without keywords in Amazon search result
This file contains 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
var words = twotabsearchtextbox.value.split(" "); | |
[...document.querySelectorAll(".s-result-item")] | |
.filter((v) => !words.every((w) => v.textContent.toLowerCase().includes(w))) | |
.forEach((v) => v.style.opacity = "0.3") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment