Created
November 4, 2024 01:01
-
-
Save mosaicer/06d32958a0d14515e6d712374e3f9def to your computer and use it in GitHub Desktop.
Eventernoteでお気に入り声優/アーティストのイベント参加回数表示する。
This file contains hidden or 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
| document.querySelectorAll('li[class~="d"]').forEach(node => | |
| node.appendChild( | |
| document.createTextNode( | |
| `(${node.className.split(' ').find(name => name.startsWith('c'))?.replace(/[^0-9]/g, '')}回)` | |
| ) | |
| ) | |
| ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment