Skip to content

Instantly share code, notes, and snippets.

@mosaicer
Created November 4, 2024 01:01
Show Gist options
  • Save mosaicer/06d32958a0d14515e6d712374e3f9def to your computer and use it in GitHub Desktop.
Save mosaicer/06d32958a0d14515e6d712374e3f9def to your computer and use it in GitHub Desktop.
Eventernoteでお気に入り声優/アーティストのイベント参加回数表示する。
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