Skip to content

Instantly share code, notes, and snippets.

@yyya-nico
Last active September 4, 2025 11:08
Show Gist options
  • Save yyya-nico/cf5ec21749b9eed77376ad07e2e67051 to your computer and use it in GitHub Desktop.
Save yyya-nico/cf5ec21749b9eed77376ad07e2e67051 to your computer and use it in GitHub Desktop.
ニコニコ大百科のピコカキコ一覧からピコ情報をスクレイピングするDevtoolsスクリプト(コンソールに入力して使用)
$$('[class$=piko_list] td').map(elem => ({
id: elem.querySelector('[id^="piko"]').id.replace(/piko[a-z]*(\d+)(_u\d+)?/, '$1'),
title: elem.querySelector('[class*="-piko"][class$="-inner"] a').textContent,
source: elem.querySelector('[class*="-piko"][class$="-source"] a')?.textContent
}))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment