Skip to content

Instantly share code, notes, and snippets.

@yuokada
Last active July 22, 2024 05:52
Show Gist options
  • Select an option

  • Save yuokada/5630d343a62281128e14c64c249605b1 to your computer and use it in GitHub Desktop.

Select an option

Save yuokada/5630d343a62281128e14c64c249605b1 to your computer and use it in GitHub Desktop.
bookmarklet for 達人出版会
var nodes = document.querySelectorAll("#main > section.booklist.clear > article");
nodes.forEach(e => {
var node = e;
if(node.innerText.includes("特価")){
node.style.backgroundColor = 'rgb(239 68 68)';
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment