- 書籍一覧(出版社別) - 達人出版会
- https://tatsu-zine.com/books/pub/impressrd
- TypeScript/Rollup/Vercelでサクッとブックマークレットを作ってみよう - Adwaysエンジニアブログ
- backgroud-colorをtailwindと同じ赤系にする。 https://tailwindcss.com/docs/background-color
| 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)'; | |
| } | |
| }); |